:root {
    --primary-color: #2ecc71; /* Green */
    --secondary-color: #2c3e50;
    --accent-color: #27ae60;
    --background-light: #f4f6f8;
    --text-dark: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 10%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInLeft 1s ease-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease-out;
}

.bot-illustration {
    font-size: 15rem;
    color: var(--primary-color);
    text-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 10%;
    background-color: var(--white);
    flex-wrap: wrap;
}

.feature-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    transition: transform 0.3s;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Developer Section */
.developer {
    text-align: center;
    padding: 4rem 10%;
    background-color: var(--secondary-color);
    color: var(--white);
}

.dev-content h2 {
    margin: 10px 0;
    font-size: 2rem;
}

.badge {
    background-color: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #1a252f;
    color: #bdc3c7;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

 .legal-container {
    max-width: 960px;
    margin: 3rem auto 4rem auto;
    padding: 0 1.5rem;
}

.legal-section {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
    padding: 2.5rem 2.25rem;
    margin-bottom: 2rem;
}

.legal-section + .legal-section {
    margin-top: 1.5rem;
}

.legal-section h1 {
    font-size: 2.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.legal-section h2 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    margin-bottom: 0.85rem;
    color: #4b5563;
    font-size: 0.98rem;
}

.legal-section ul {
    margin: 0.5rem 0 1rem 1.25rem;
    padding-left: 0.75rem;
}

.legal-section li {
    margin-bottom: 0.4rem;
    color: #4b5563;
    font-size: 0.96rem;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section strong {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .legal-container {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .legal-section {
        padding: 1.75rem 1.5rem;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    }

    .legal-section h1 {
        font-size: 1.8rem;
    }
}

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 5%;
    }

    .hero-image {
        margin-top: 3rem;
    }
    
    .bot-illustration {
        font-size: 10rem;
    }
}
