/* Fresh Focus Website Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #667eea;
}

.problem-solution {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.problem, .solution {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.problem h2, .solution h2 {
    color: #667eea;
    margin-bottom: 1rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
    background: #667eea;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.testimonials {
    background: #f8f9ff;
}

.testimonial {
    background: white;
    margin: 1rem 0;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.lead-magnet {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    text-align: center;
    padding: 3rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.email-form {
    margin-top: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.email-form input {
    width: 70%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 25px 0 0 25px;
    border-right: none;
    font-size: 1rem;
}

.email-form button {
    width: 30%;
    padding: 12px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-weight: bold;
}

.email-form button:hover {
    background: #5a67d8;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #333;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .problem-solution {
        flex-direction: column;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .email-form input, .email-form button {
        width: 100%;
        border-radius: 25px;
        margin-bottom: 10px;
    }
    
    .email-form button {
        border-radius: 25px;
    }
}