@media (max-width: 500px) {
    /* Header and Navigation */
    header {
        padding: 1rem 5%;
        position: relative;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 30px;
    }

    /* Hamburger Menu */
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: #000;
        text-decoration: none;
        font-size: 1rem;
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
    }

    /* Hamburger Button */
    .hamburger {
        display: block;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #000;
        margin: 5px 0;
        transition: 0.3s;
    }

    /* Hero Section */
    .hero {
        padding: 0;
        background: none;
        position: relative;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 5%;
        position: relative;
    }

    .hero-image {
        width: 100%;
        margin-bottom: -120px;
        z-index: 1;
    }

    .hero-image img {
        width: 100%;
        border-radius: 40px;
    }

    .hero-text {
        background-color: #000;
        color: #fff;
        padding: 2rem;
        border-radius: 40px;
        position: relative;
        z-index: 2;
        margin-top: 170px;
        width: 100vw;
    }

    .intro {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    /* Services Section */
    .services {
        flex-direction: column;
        border-radius: 20px 0 20px 20px;
    }

    .services-content {
        margin: 0;
        padding: 1rem;
        text-align: justify;
    }

    .services-content p {
        text-align: justify;
        margin-bottom: 2rem;
    }

    .services-content .cta-button {
        margin: 0 auto;
        display: block;
    }

    .services-image {
        display: none;
    }

    .services-content h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        padding-top: 20px;
    }

    /* Offer Section */
    .offer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 5%;
    }

    .offer-item {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        height: 100%;
        justify-content: space-between;
    }

    .offer-item .content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .offer-item img {
        width: 100%;
        height: 250px;
        border-radius: 40px;
        object-fit: cover;
    }

    .offer-item p {
        padding: 0;
        width: 100%;
        margin-bottom: 1rem;
    }

    .offer-item .cta-button {
        margin: 0 auto;
        display: block;
    }

    .offer h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        padding-top: 30px;
    }

    .offer-item p:first-of-type {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .offer p {
        font-size: 15px;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
    }

    .about-image img {
        height: 400px;
    }

    .about-text p {
        width: 85vw;
    }

    .about {
        padding-top: 1rem; /* Remove top padding */
    }

    /* FAQ Section */

    .faq {
        padding-top: 1rem;
    }

    .faq h2 {
        margin-bottom: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }

    .faq-content {
        grid-template-columns: 1fr;
    }

    /* Contact Section */
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (min-width: 700px) {
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    
    .nav-links {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .nav-links a {
        color: #000000;
        text-decoration: none;
        font-size: 0.9rem;
        letter-spacing: 1px;
        transition: opacity 0.3s ease;
    }
    
    .nav-links a:hover {
        opacity: 0.8;
    }
    
    .nav-links a.linkedin-icon img {
        height: 4rem;
        display: flex;
        align-items: center;
    }

    
}

@media (max-width: 699px) {
    /* Hamburger Menu */
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: #000;
        text-decoration: none;
        font-size: 1rem;
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
    }

    /* Hamburger Button */
    .hamburger {
        display: block;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #000;
        margin: 5px 0;
        transition: 0.3s;
    }


}


@media (max-width: 768px) and (min-width: 501px) {
    header {
        padding: 1rem 5%;
        position: relative;
    }

    .logo img {
        height: 30px;
    }


    /* Hero Section */
    .hero {
        padding: 0;
        background: none;
        position: relative;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 5%;
        position: relative;
    }

    .hero-image {
        width: 100%;
        margin-bottom: -120px;
        z-index: 1;
    }

    .hero-image img {
        width: 100%;
        border-radius: 40px;
    }

    .hero-text {
        background-color: #000;
        color: #fff;
        padding: 2rem;
        border-radius: 40px;
        position: relative;
        z-index: 2;
        margin-top: 170px;
        width: 80vw;
    }

    .intro {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .services-image {
        display: none;
    }

    .services-content h2 {
        text-align: center;
        padding-top: 0;
        font-size: 2rem;
    }

    .services-content {
        margin: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .offer h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        padding-top: 20px;
    }

    .offer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 5%;
    }

    .offer-item {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        height: 100%;
        justify-content: space-between;
    }

    .offer-item .content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .offer-item img {
        width: 100%;
        height: 300px;
        border-radius: 40px;
        object-fit: cover;
    }

    .offer-item p {
        padding: 0;
        width: 100%;
        margin-bottom: 1rem;
    }

    .offer-item .cta-button {
        margin: 0 auto;
        display: block;
    }

    .offer-item .offer-item-2 {
        margin-bottom: 0;
        padding-bottom: 0px;
    }

    .offer-item .offer-item-1 {
        margin-bottom: 25px;
        padding-bottom: 0px;
    }

    .offer-item .offer-item-ul-1 {
        padding-bottom: 30px;
    }

    /* About Section */
    .about {
        padding: 1rem;
    }

    .about-content {
        display: block;
        position: relative;
    }

    .about-image {
        float: left;
        width: 40%;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }

    .about-image img {
        height: 300px;
        width: 100%;
        object-fit: cover;
        border-radius: 40px;
    }

    .about-text {
        width: 100%;
    }

    .about-text p {
        width: 100%;
        margin-bottom: 1rem;
    } 

    .about h2 {
        padding-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 970px) and (min-width: 769px) {
    header {
        padding: 1rem 5%;
        position: relative;
    }

    .logo img {
        height: 30px;
    }

    /* Hero Section */
    .hero {
        padding: 0;
        background: none;
        position: relative;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 5%;
        position: relative;
    }

    .hero-image {
        width: 100%;
        margin-bottom: -120px;
        z-index: 1;
    }

    .hero-image img {
        width: 100%;
        border-radius: 40px;
    }

    .hero-text {
        background-color: #000;
        color: #fff;
        padding: 2rem;
        border-radius: 40px;
        position: relative;
        z-index: 2;
        margin-top: 170px;
        width: 80vw;
    }

    .intro {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .services-image {
        display: none;
    }

    .services-content h2 {
        text-align: center;
        padding-top: 0;
        font-size: 2rem;
    }

    .services-content {
        margin: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .offer h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        padding-top: 20px;
    }

    .offer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 5%;
    }

    .offer-item {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        height: 100%;
        justify-content: space-between;
    }

    .offer-item .content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .offer-item img {
        width: 100%;
        height: 300px;
        border-radius: 40px;
        object-fit: cover;
    }

    .offer-item p {
        padding: 0;
        width: 100%;
        margin-bottom: 1rem;
    }

    .offer-item .cta-button {
        margin: 0 auto;
        display: block;
    }

    .offer-item .offer-item-2 {
        margin-bottom: 0;
        padding-bottom: 0px;
    }

    .offer-item .offer-item-1 {
        margin-bottom: 25px;
        padding-bottom: 0px;
    }

    .offer p {
        text-align: center;
    }

    /* About Section */
    .about {
        padding: 1rem;
    }

    .about-content {
        display: block;
        position: relative;
    }

    .about-image {
        float: left;
        width: 40%;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }

    .about-image img {
        height: 300px;
        width: 100%;
        object-fit: cover;
        border-radius: 40px;
    }

    .about-text {
        width: 100%;
    }

    .about-text p {
        width: 100%;
        margin-bottom: 1rem;
    } 

    .about h2 {
        padding-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 1157px) and (min-width: 971px) {
    .services-image {
        background-color: white;
    }

    .hero {
        border-radius: 40px;
    }

    .services-image img {
        margin-left: 0px;
        width: 80%;
    }

    .offer-item-2 {
        margin-bottom: 0px !important;
    }

    .about {
        padding: 1rem;
    }

    .about-content {
        display: block;
        position: relative;
    }

    .about-image {
        float: left;
        width: 40%;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }

    .about-image img {
        height: 450px;
        width: 90%;
        object-fit: cover;
        border-radius: 40px;
    }

    .about-text {
        width: 100%;
    }

    .about-text p {
        width: 100%;
        margin-bottom: 1rem;
    } 

    .about h2 {
        padding-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 1260px) and (min-width: 1158px) {
    .about {
        padding: 1rem;
    }

    .about-content {
        display: block;
        position: relative;
    }

    .about-image {
        float: left;
        width: 40%;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }

    .about-image img {
        height: 450px;
        width: 90%;
        object-fit: cover;
        border-radius: 40px;
    }

    .about-text {
        width: 100%;
    }

    .about-text p {
        width: 100%;
        margin-bottom: 1rem;
    } 

    .about h2 {
        padding-top: 0;
        margin-bottom: 0;
    }
    
}

@media (max-width: 740px) {
    .contact {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .contact h2 {
        margin-bottom: 1rem;
    }

    .contact-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 613px) {
    .offer-p {
        display: none;
    }
}

@media (max-width: 768px) {
    .offer-item-ul-1 {
        padding-bottom: 0px !important;
    }
}