/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    color: #1F2B24;
    background-color: #F4F7F5;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1F2B24;
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: #6BBF8E;
    text-decoration: underline;
}

.cookie-accept {
    background: #6BBF8E;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
}

.cookie-accept:hover {
    background: #5aa87a;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid rgba(31, 43, 36, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1F2B24;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav a {
    color: rgba(31, 43, 36, 0.75);
    font-weight: 500;
    font-size: 15px;
}

.nav a:hover {
    color: #6BBF8E;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #1F2B24;
}

.mobile-menu {
    display: none;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: #1F2B24;
    border-bottom: 1px solid rgba(31, 43, 36, 0.1);
}

.mobile-menu.active {
    display: block;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #6BBF8E;
    color: white;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #5aa87a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 191, 142, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #6BBF8E;
    padding: 12px 28px;
    border-radius: 999px;
    border: 2px solid #6BBF8E;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #6BBF8E;
    color: white;
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #F4F7F5 0%, #CFE8D8 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1F2B24;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(31, 43, 36, 0.75);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 16px;
    color: rgba(31, 43, 36, 0.65);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(31, 43, 36, 0.15);
}

/* Section */
.section {
    padding: 80px 0;
}

.bg-light {
    background: white;
}

.bg-accent {
    background: #CFE8D8;
}

.section-title {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1F2B24;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(31, 43, 36, 0.65);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.text-block {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(31, 43, 36, 0.75);
}

.rounded-card {
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(31, 43, 36, 0.1);
}

/* Card Grid */
.card-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(31, 43, 36, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(31, 43, 36, 0.12);
}

.card-icon {
    margin-bottom: 20px;
}

.card-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1F2B24;
}

.card-text {
    font-size: 15px;
    color: rgba(31, 43, 36, 0.65);
    line-height: 1.6;
}

/* What We Do */
.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.what-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(31, 43, 36, 0.08);
    transition: all 0.3s ease;
}

.what-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(31, 43, 36, 0.12);
}

.what-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.what-item h3 {
    font-size: 22px;
    padding: 24px 24px 12px 24px;
    color: #1F2B24;
}

.what-item p {
    padding: 0 24px 24px 24px;
    color: rgba(31, 43, 36, 0.65);
    line-height: 1.6;
}

/* What We Do NOT Do */
.not-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.not-do-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(31, 43, 36, 0.08);
}

.not-icon {
    flex-shrink: 0;
}

.not-do-item p {
    font-weight: 500;
    color: #1F2B24;
    margin: 0;
}

/* Methodology */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.methodology-step {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(31, 43, 36, 0.08);
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #6BBF8E;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.methodology-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1F2B24;
}

.methodology-step p {
    font-size: 15px;
    color: rgba(31, 43, 36, 0.65);
    line-height: 1.6;
}

/* Materials */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.material-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(31, 43, 36, 0.08);
    transition: all 0.3s ease;
}

.material-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(31, 43, 36, 0.12);
}

.material-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.material-content {
    padding: 28px;
}

.material-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1F2B24;
}

.material-content p {
    font-size: 15px;
    color: rgba(31, 43, 36, 0.65);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(31, 43, 36, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(31, 43, 36, 0.12);
}

.team-avatar {
    margin: 0 auto 24px;
    width: 120px;
    height: 120px;
}

.team-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1F2B24;
}

.team-role {
    font-size: 16px;
    color: #6BBF8E;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-description {
    font-size: 15px;
    color: rgba(31, 43, 36, 0.65);
    line-height: 1.6;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(31, 43, 36, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1F2B24;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(31, 43, 36, 0.2);
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6BBF8E;
    box-shadow: 0 0 0 3px rgba(107, 191, 142, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.checkbox-label a {
    color: #6BBF8E;
    text-decoration: underline;
}

.error-message {
    display: none;
    color: #dc2626;
    font-size: 14px;
    margin-top: 6px;
}

.error-message.show {
    display: block;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc2626;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(31, 43, 36, 0.08);
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: #1F2B24;
}

.info-block {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(31, 43, 36, 0.1);
}

.info-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-block p {
    margin-bottom: 8px;
    line-height: 1.6;
    color: rgba(31, 43, 36, 0.75);
}

.info-block strong {
    color: #1F2B24;
}

.info-block a {
    color: #6BBF8E;
}

/* Map */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(31, 43, 36, 0.08);
    margin-bottom: 20px;
}

/* Disclaimer */
.disclaimer-text {
    font-size: 14px;
    color: rgba(31, 43, 36, 0.6);
    line-height: 1.6;
    margin-top: 24px;
}

.disclaimer-text.center {
    text-align: center;
}

/* Footer */
.footer {
    background: #1F2B24;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #6BBF8E;
}

.footer-section p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: white;
    margin-bottom: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-content {
        gap: 16px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .card-grid-4,
    .what-we-do-grid,
    .methodology-grid,
    .materials-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 20px;
    }
}
