:root {
    --primary-color: #ff6b2b;
    --primary-dark: #e65a1f;
    --dark-color: #1a1a1a;
    --light-color: #2a2a2a;
    --text-light: #ffffff;
    --text-gray: #888888;
    --card-bg: rgba(255, 255, 255, 0.05);
    --max-width: 1200px;
    --transition: all 0.3s ease;
    --gradient-1: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}



@media screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        max-width: 600px;
        margin: 0 auto;
    }
}


@media screen and (max-width: 768px) {

    .menu-toggle {
        display: flex !important;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        display: none;
    }

    .nav-links.active {
        left: 0;
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links li a {
        font-size: 1.2rem;
    }


    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
    }


    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }


    .section-title {
        font-size: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

   


    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .cta-button {
        width: 100%;
    }
}


@media screen and (max-width: 480px) {

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons .cta-button,
    .hero-buttons .secondary-button {
        width: 100%;
    }


    .section-title {
        font-size: 1.8rem;
    }


    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

   
}
