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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e8ebed;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a3e;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.nav a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2d7a3e;
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a3a2e;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    color: #f0f0f0;
    font-size: 20px;
    line-height: 1.5;
    max-width: 700px;
}

.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.card-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.info-card {
    flex: 1;
    min-width: 300px;
}

.info-card h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.image-card {
    flex: 1;
    min-width: 300px;
}

.image-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.projects-showcase {
    padding: 80px 0;
    background-color: #ffffff;
}

.projects-showcase h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.project-card {
    background: #ffffff;
    border: 1px solid #e8ebed;
    border-radius: 12px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e9ecef;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.impact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.impact-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.impact-text {
    flex: 1;
    min-width: 300px;
}

.impact-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.impact-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.stats-list {
    list-style: none;
}

.stats-list li {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
    color: #2c3e50;
}

.stats-list li:last-child {
    border-bottom: none;
}

.impact-visual {
    flex: 1;
    min-width: 300px;
}

.impact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.services-preview {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-item {
    background: #f8f9fa;
    border: 1px solid #e8ebed;
    border-radius: 12px;
    padding: 32px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    max-width: 500px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.service-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2d7a3e;
    margin: 20px 0;
}

.cta-button {
    background-color: #2d7a3e;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #245d31;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background: #ffffff;
    border-left: 4px solid #2d7a3e;
    padding: 32px;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 380px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card cite {
    font-style: normal;
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
}

.cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.cta-card {
    background: linear-gradient(135deg, #2d7a3e 0%, #1a5128 100%);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
}

.cta-card h2 {
    color: #ffffff;
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-card p {
    color: #e8f5e9;
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-button-large {
    display: inline-block;
    background-color: #ffffff;
    color: #2d7a3e;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #b8c5d0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #b8c5d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #495867;
}

.footer-bottom p {
    color: #b8c5d0;
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #8a98a5;
    max-width: 800px;
    margin: 10px auto 0;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    min-width: 250px;
}

.cookie-content a {
    color: #81c784;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #2d7a3e;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #245d31;
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5a6268;
}

.page-hero {
    background: linear-gradient(135deg, #2d7a3e 0%, #1a5128 100%);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    color: #e8f5e9;
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.content-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.text-column {
    flex: 1;
    min-width: 300px;
}

.text-column h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.text-column p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.image-column {
    flex: 1;
    min-width: 300px;
}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.values-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin: 60px 0;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
    padding: 0 20px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 0 20px;
}

.value-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 15px);
    min-width: 260px;
    max-width: 500px;
    border-left: 4px solid #2d7a3e;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.timeline-section {
    padding: 60px 0;
}

.timeline-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: #2d7a3e;
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto 60px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 360px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e9ecef;
}

.team-member h3 {
    font-size: 20px;
    margin: 24px 20px 12px;
    color: #2c3e50;
    font-weight: 600;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
    padding: 0 20px 24px;
}

.services-detailed {
    padding: 80px 0;
}

.service-full-card {
    background: #ffffff;
    border: 1px solid #e8ebed;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}

.service-header {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #e9ecef;
}

.service-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-body {
    padding: 40px;
}

.service-body h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.service-body p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.service-body h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    color: #2c3e50;
    font-weight: 600;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    padding: 8px 0 8px 28px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 30px 0;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #2d7a3e;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.form-wrapper > p {
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e8ebed;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d7a3e;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: #2d7a3e;
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    background-color: #2d7a3e;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #245d31;
}

.contact-page-content {
    padding: 80px 0;
}

.contact-info-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
}

.contact-info-card h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
    font-weight: 700;
}

.info-block {
    margin-bottom: 28px;
}

.info-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

.contact-image {
    flex: 1;
    min-width: 300px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.additional-info {
    margin-bottom: 60px;
}

.additional-info h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.help-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.help-card {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 15px);
    min-width: 260px;
    max-width: 500px;
}

.help-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.help-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.help-card a {
    color: #2d7a3e;
    text-decoration: underline;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 32px 0;
}

.service-info p {
    font-size: 17px;
    color: #2c3e50;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 220px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2d7a3e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.button-primary,
.button-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-primary {
    background-color: #2d7a3e;
    color: #ffffff;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(45,122,62,0.3);
}

.button-secondary {
    background-color: #e9ecef;
    color: #2c3e50;
}

.button-secondary:hover {
    background-color: #dee2e6;
}

.contact-reminder {
    margin-top: 40px;
    padding: 24px;
    background: #e8f5e9;
    border-radius: 8px;
}

.contact-reminder p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.last-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 20px 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2d7a3e;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #e8ebed;
    font-size: 15px;
}

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 17px;
    }

    .info-card h2,
    .text-column h2 {
        font-size: 28px;
    }

    .projects-showcase h2,
    .services-preview h2,
    .testimonials-section h2,
    .team-section h2 {
        font-size: 32px;
    }

    .cta-card h2 {
        font-size: 28px;
    }

    .nav {
        gap: 16px;
    }

    .card-grid,
    .impact-wrapper,
    .content-block {
        gap: 30px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 12px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .nav {
        width: 100%;
    }

    .hero {
        height: 400px;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .project-card,
    .service-item,
    .testimonial-card,
    .value-card,
    .help-card {
        min-width: 100%;
    }
}