/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B9C;
    --primary-light: #FFC2D7;
    --secondary-color: #9C27B0;
    --text-color: #333333;
    --light-text: #666666;
    --background: #FFFFFF;
    --section-bg: #F9F0F4;
    --card-bg: #FFFFFF;
    --shadow: 0 4px 12px rgba(255, 107, 156, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
}

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

/* Typography */
h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1.5rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
}

.logo {
    width: 200px;
    height: 50px;
}

.tagline {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: -10px;
    margin-left: 12px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    background-color: var(--section-bg);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-content {
    flex: 1;
    padding: 0 40px;
}

.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
}

.enhancement-graphic {
    width: 300px;
    height: 300px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 156, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 156, 0.4);
    background-color: var(--secondary-color);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 156, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 156, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 156, 0); }
}

.cta-center {
    text-align: center;
    margin: 40px 0;
}

/* Features Section */
.features {
    padding: 60px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background-color: var(--section-bg);
    border-radius: 20px;
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.stars {
    color: gold;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    margin-bottom: 15px;
}

.author {
    font-weight: bold;
    text-align: right;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    padding: 80px 0;
    background-color: var(--section-bg);
    border-radius: 20px;
    margin: 60px 0;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--primary-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-icon {
    margin-right: 10px;
}

.footer-links {
    display: flex;
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    color: var(--light-text);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        flex-direction: column;
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 0 20px 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    
    nav {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .steps {
        flex-direction: column;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        margin: 5px 0;
    }
}
