:root {
    --primary-color: #39b4e6;
    --primary-dark: #2a9bd0;
    --secondary-color: #f9f9f9;
    --text-color: #333;
    --text-light: #777;
    --accent-color: #ff6a7e;
    --white: #fff;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --section-padding: 60px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.button {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow);
}

.primary-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.logo-img {
    height: 40px;
    margin-right: 8px;
}

.logo-img.small {
    height: 30px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: #f4f7f6;
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Feature Sections */
.feature-section {
    padding: var(--section-padding);
}

.light-bg {
    background-color: var(--secondary-color);
}

.feature-section.alt {
    background-color: #f4f7f6;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-text {
    flex: 1;
}

.screenshot {
    max-width: 300px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 8px solid var(--white);
    background-color: var(--white);
}

.feature-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-text p {
    margin-bottom: 25px;
    color: var(--text-color);
}

.feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
}

.feature-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
}

.feature-list li:after {
    content: "✓";
    position: absolute;
    left: 3px;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #e9f7fd 100%);
    padding: var(--section-padding);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section p {
    margin-bottom: 30px;
}

.trust-elements {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
}

.trust-item {
    text-align: center;
}

.stars, .user-count, .guarantee {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: #303030;
    color: var(--white);
    padding: 50px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.copyright {
    margin: 15px 0;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .feature-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .left-image .feature-image {
        order: 1;
    }
    
    .left-image .feature-text {
        order: 2;
    }
    
    .right-image .feature-image {
        order: 1;
    }
    
    .trust-elements {
        flex-direction: column;
        gap: 25px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .feature-text h2, .cta-section h2 {
        font-size: 1.8rem;
    }
    
    nav {
        display: none;
    }
    
    .screenshot {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Legal Content Styles */
.legal-content {
    padding: 120px 0 60px;
    background-color: var(--background-color);
}

.legal-content .container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-content p {
    margin: 1.2rem 0;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 1.1rem;
}

.legal-content ul {
    margin: 1.2rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin: 0.8rem 0;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 1.1rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

.legal-content .notice-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 4px 4px 0;
}

.legal-content .notice-box p {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 100px 20px 40px;
    }

    .legal-content h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }

    .legal-content p,
    .legal-content li {
        font-size: 1rem;
        line-height: 1.6;
    }

    .legal-content .notice-box {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }
}

@media (min-width: 768px) {
    .feature-content {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .feature-text, .feature-image {
        flex: 1;
    }

    .feature-section.alt .feature-content {
        flex-direction: row-reverse;
    }
} 