/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-color: #2e412a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    background-color: #333;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./imgs/1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 1;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    max-width: 80%;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 70%;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    background-color: #e9e5a0;
    color: #333;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* About Section */
.about {
    padding: 60px 0;
    background-color: #bcc298;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.about p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Sectors Section */
.sectors {
    padding: 60px 0;
    background-color: #fff;
}

.sectors h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.sectors p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.sector-card {
    background-color: #f1f4e3;
    border-radius: 5px;
    padding: 30px;
}

.sector-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.sector-card p {
    font-size: 14px;
    color: #555;
}

/* Difference Section */
.difference {
    padding: 60px 0;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.difference-content {
    flex: 1;
    min-width: 300px;
}

.difference-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.difference-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.difference-img {
    flex: 1;
    min-width: 300px;
}

.difference-img img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Education Section */
.education {
    padding: 60px 0;
    background-color: #bcc298;
}

.education h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.education-card {
    padding: 20px 0;
}

.education-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.education-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #fff;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.contact p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-info {
    margin-top: 40px;
}

.office {
    margin-bottom: 30px;
}

.office h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.office-details {
    margin-bottom: 10px;
}

.office-details strong {
    font-weight: 600;
}

.contact-map {
    margin-top: 30px;
}

.contact-map img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    padding: 30px 0;
    background-color: #2e412a;
    color: white;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
}

.cookie-content {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.cookie-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.cookie-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept {
    flex: 1;
    background-color: #2e412a;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-reject {
    flex: 1;
    background-color: transparent;
    color: #333;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 15px;
    cursor: pointer;
}

.cookie-hidden {
    display: none;
}

.block {
    display: flex;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
        max-width: 100%;
    }

    .block {
        flex-direction: column;
    }

    .hero p {
        max-width: 100%;
    }

    .difference {
        flex-direction: column;
    }

    .service-card,
    .sector-card {
        padding: 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}