/* style.css */

/* Reset & Base Styles */
html {
    font-size: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: #72AD04;
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cookie-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-cookie-secondary {
    background-color: white;
    color: #333;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-cookie-primary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
}

/* Header */
.header {
    background-color: #72AD04;
    padding: 1.5rem 2rem;

}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.nav-brand a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.4rem;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #72AD04;
    color: white;
}

.btn-primary:hover {
    background-color: #7CB342;
}

/* Hero Section */
.hero {
    background-color: #f8f8f8;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #333;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    color: #666;
}

/* Services Section */
.services {
    background: url("assets/bg1.png") no-repeat center center;
    background-size: cover;
    padding: 6rem 0;
    color: white;
}


.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.services-header p {
    font-size: 1.4rem;
    max-width: 70rem;
    margin: 0 auto;
    line-height: 1.5;
}

.services-list {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    background: white;
    color: #333;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-item span {
    font-size: 1.6rem;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: white;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.about-text {
    order: 1;
}

.about-text h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.about-text p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
}

.about-image {
    order: 2;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    max-width: 35rem;
    height: auto;
    /*border-radius: 1rem;*/
}

/* Advantages Section */
.advantages {
    padding: 6rem 0;
    background-color: white;
}

.advantages h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #333;
}

.advantages-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.advantage-item {
    text-align: center;
    max-width: 30rem;

}

.advantage-icon {
    /*width: 6rem;*/
    height: 6rem;
    margin: 0 auto 1.5rem;


    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.advantage-icon img {
    width: 3rem;
    height: 3rem;
}

.advantage-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;

}

.advantage-item p {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.4;
}

/* Blog Section */
.blog {
        background: url(assets/bg1.png) no-repeat center center;
    background-size: cover;

    padding: 6rem 0;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-item {

    overflow: hidden;

}

.blog-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.blog-content {
    /*padding: 2rem;*/
}

.blog-content h3 {

    margin-bottom: 1rem;

    color: #FFF;
font-family: Inter;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 28.8px */
}

.blog-content p {



    color: #FFF;
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 27px */
}

/* Education Section */
.education {
    padding: 6rem 0;
    background-color: white;
}

.education-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
}

.education-image {
    order: 1;
}

.education-image img {
    width: 100%;
    max-width: 100%;
    height: auto;

}

.education-text {
    order: 2;
}

.education-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.3;
}

.education-text p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: #666;
}

.education-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.education-text li {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: white;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info p {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: #666;
}

#contactForm {
    max-width: 50rem;
    margin: 0 auto;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 0.3rem;
    font-size: 1.3rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #72AD04;
}

.input-group textarea {
    resize: vertical;
    min-height: 10rem;
}

/* Footer */
.footer {
    background-color: #72AD04;
    color: white;
    padding: 2.5rem 0;
}

.footer .container {
    display: flex;
    flex-direction: column!important;
    gap: 1.5rem;
    text-align: center;
}
.footer-brand{
    border-bottom: 1px solid white;
    width: 100%;
    padding: 20px;
}
.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Success Page Styles */
.success-section {
    padding: 8rem 0;
    text-align: center;
    /*background: linear-gradient(135deg, #8BC34A 0%, #9CCC65 100%);*/
    color: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.success-content p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .cookie-banner {
        max-width: 50rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .nav {
        flex-wrap: nowrap;
        gap: 0;
    }

    .nav-brand a {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 3rem;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 3.6rem;
    }

    .hero-content p {
        font-size: 1.6rem;
    }

    .services-header h2 {
        font-size: 3.2rem;
    }

    .services-header p {
        font-size: 1.6rem;
    }

    .about-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }

    .about-text {
        flex: 1;
        order: 1;
    }

    .about-image {
        order: 2;
        flex-shrink: 0;
    }

    .about-text h2 {
        font-size: 2.8rem;
    }

    .about-text p {
        font-size: 1.6rem;
    }

    .advantages h2 {
        font-size: 2.8rem;
    }

    .advantages-grid {
        flex-direction: row;
        /*flex-wrap: wrap;*/
        justify-content: center;
        gap: 4rem;
    }

    .advantage-item {
        flex: 0 0 25rem;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .blog-item:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .education-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }

    .education-image {
        order: 1;
        flex-shrink: 0;
        max-width: 45%;
    }

    .education-text {
        order: 2;
        flex: 1;
    }

    .education-text h2 {
        font-size: 2.6rem;
    }

    .education-text p {
        font-size: 1.5rem;
    }

    .education-text li {
        font-size: 1.4rem;
    }

    .footer .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-links {
        justify-content: flex-end;
    }

    .success-content h1 {
        font-size: 3.6rem;
    }

    .success-content p {
        font-size: 1.8rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 4.2rem;
    }

    .advantages-grid {
        justify-content: space-between;
        max-width: 90rem;
        margin: 0 auto;
    }

    .advantage-item {
        flex: 0 0 28rem;
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-item:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
        margin: 0;
    }

    .success-content h1 {
        font-size: 4.2rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .about-content {
        gap: 6rem;
    }

    .education-content {
        gap: 6rem;
    }
}
@media (max-width: 768px) {
    .nav-menu {
    display: none;
    flex-wrap: wrap;
    list-style: none;
    gap: 1.5rem;
}

}