﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.pencil-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.logo span:last-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
}

    nav ul li {
        margin-left: 2rem;
    }

.login-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.cta-button {
    background-color: #4747FF;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

    .cta-button:hover {
        background-color: #3a3ad1;
    }

main {
    margin-top: 80px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

.hero-image {
    flex: 1;
    text-align: center;
}

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

.features {
    padding: 4rem 2rem;
    background-color: #fff;
}

    .features h2 {
        text-align: center;
        margin-bottom: 3rem;
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.cta {
    background-color: #4747FF;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

    .cta h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta p {
        margin-bottom: 2rem;
    }

footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

    .footer-logo .pencil-icon {
        font-size: 1.2rem;
        margin-right: 10px;
    }

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 1rem;
}

footer p {
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        margin-top: 1rem;
    }

        .footer-links a {
            display: block;
            margin: 0.5rem 0;
        }
}
