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

:root {
    --forest-green: #166534;
    --forest-dark: #14532d;
    --forest-light: #22863a;
    --slate-gray: #475569;
    --slate-dark: #334155;
    --slate-light: #64748b;
    --off-white: #f8fafc;
    --cream: #f1f5f9;
    --copper: #d97706;
    --copper-dark: #b45309;
    --copper-light: #f59e0b;
    --white: #ffffff;
    --black: #1e293b;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--slate-dark);
    background-color: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--forest-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--slate-gray);
}

a {
    color: var(--forest-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--copper);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--slate-light);
    font-size: 1.125rem;
}

.section-tag {
    display: inline-block;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--copper);
    margin-bottom: 0.75rem;
}

.btn {
    display: inline-block;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--forest-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--forest-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22, 101, 52, 0.2);
}

.btn-secondary {
    background: var(--copper);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--copper-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.2);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.navbar {
    height: 70px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--forest-dark);
}

.logo:hover {
    color: var(--forest-green);
}

.logo-icon {
    color: var(--copper);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--slate-dark);
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--forest-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--slate-dark);
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--forest-dark);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    color: var(--off-white);
    margin-bottom: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--copper-light);
    text-decoration: underline;
}

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

.cookie-buttons button {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--copper);
    color: var(--white);
}

.btn-accept:hover {
    background: var(--copper-dark);
}

.btn-reject {
    background: transparent;
    color: var(--off-white);
    border: 1px solid var(--off-white);
}

.btn-reject:hover {
    background: var(--off-white);
    color: var(--forest-dark);
}

.btn-customize {
    background: transparent;
    color: var(--copper-light);
    text-decoration: underline;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.cookie-modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h3 {
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--cream);
}

.cookie-option:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    color: var(--slate-dark);
    cursor: pointer;
}

.cookie-option label input {
    width: 18px;
    height: 18px;
    accent-color: var(--forest-green);
}

.cookie-option p {
    font-size: 0.875rem;
    margin: 0.5rem 0 0 2rem;
    color: var(--slate-light);
}

.modal-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--cream) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-light);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--forest-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--slate-light);
    margin-top: 0.25rem;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(22, 101, 52, 0.15);
}

.services-section {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--off-white);
    border-radius: 12px;
    overflow: hidden;
    max-width: 400px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(22, 101, 52, 0.12);
}

.service-image {
    height: 180px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--forest-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: -2.5rem;
    position: relative;
    z-index: 1;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-content p {
    font-size: 0.95rem;
    color: var(--slate-light);
    margin-bottom: 0;
}

.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}

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

.feature-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(22, 101, 52, 0.1);
}

.feature-image {
    height: 200px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    padding: 1.5rem;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--copper);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: -3rem;
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: var(--slate-light);
    margin-bottom: 0;
}

.work-examples {
    padding: 80px 0;
    background: var(--white);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.work-item {
    position: relative;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-item:hover img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(22, 101, 52, 0.9));
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.work-item:hover .work-overlay {
    transform: translateY(0);
}

.work-overlay span {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
}

.process-section {
    padding: 80px 0;
    background: var(--forest-dark);
    color: var(--white);
}

.process-section .section-header h2 {
    color: var(--white);
}

.process-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.process-section .section-tag {
    color: var(--copper-light);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 0.5rem;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-section {
    padding: 80px 0;
    background: var(--off-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-info {
    padding: 3rem;
    background: var(--forest-dark);
    color: var(--white);
}

.contact-info .section-tag {
    color: var(--copper-light);
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--copper-light);
}

.contact-item strong {
    display: block;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item p {
    color: var(--white);
    margin-bottom: 0;
}

.contact-item a {
    color: var(--white);
}

.contact-item a:hover {
    color: var(--copper-light);
}

.contact-form-container {
    padding: 3rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--slate-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--slate-dark);
    background: var(--off-white);
    border: 2px solid var(--cream);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest-green);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--slate-light);
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--forest-green);
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--forest-green);
    text-decoration: underline;
}

.btn-submit {
    margin-top: 0.5rem;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--slate-light);
    margin-bottom: 0;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success svg {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.form-success h3 {
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--slate-light);
    margin-bottom: 0;
}

footer {
    background: var(--slate-dark);
    color: var(--off-white);
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    margin-bottom: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white);
}

.footer-logo svg {
    color: var(--copper);
}

.footer-logo:hover {
    color: var(--white);
}

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

.footer-column h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a,
.footer-column li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--copper-light);
}

.contact-list li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    color: rgba(255, 255, 255, 0.5);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-green) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 0;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.25rem;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(22, 101, 52, 0.15);
}

.values-section {
    padding: 80px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--off-white);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(22, 101, 52, 0.1);
}

.value-icon {
    color: var(--copper);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--slate-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.commitment-section {
    padding: 80px 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.commitment-image img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(22, 101, 52, 0.15);
}

.commitment-content h2 {
    margin-bottom: 1rem;
}

.commitment-list {
    list-style: none;
    margin-top: 1.5rem;
}

.commitment-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.commitment-list svg {
    flex-shrink: 0;
    color: var(--forest-green);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--copper-dark);
}

.cta-content .btn-primary:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

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

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

.service-detail-item.reverse {
    direction: rtl;
}

.service-detail-item.reverse > * {
    direction: ltr;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(22, 101, 52, 0.15);
}

.service-detail-content h2 {
    margin-bottom: 1rem;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--forest-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--slate-gray);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--copper);
    border-radius: 50%;
}

.additional-services {
    padding: 80px 0;
    background: var(--cream);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.additional-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.additional-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(22, 101, 52, 0.1);
}

.additional-item svg {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.additional-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.additional-item p {
    font-size: 0.9rem;
    color: var(--slate-light);
    margin-bottom: 0;
}

.work-gallery {
    padding: 80px 0;
}

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

.gallery-item {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

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

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.contact-info-block > p {
    color: var(--slate-light);
    margin-bottom: 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--off-white);
    border-radius: 10px;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--forest-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-card-content p {
    margin-bottom: 0;
}

.contact-card-content a {
    color: var(--slate-dark);
}

.contact-card-content a:hover {
    color: var(--forest-green);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--slate-light);
    margin-top: 0.25rem;
}

.business-hours h3 {
    margin-bottom: 1rem;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cream);
    color: var(--slate-gray);
}

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

.contact-form-block h2 {
    margin-bottom: 1.5rem;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
}

.map-section {
    padding: 60px 0 80px;
    background: var(--cream);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--slate-light);
}

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

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.legal-document h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--forest-green);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-document ul,
.legal-document ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
    color: var(--slate-gray);
}

.legal-document p {
    margin-bottom: 1rem;
}

.contact-block {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-block p {
    margin-bottom: 0.5rem;
}

.contact-block p:last-child {
    margin-bottom: 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 2rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid var(--cream);
}

.cookie-table th {
    background: var(--forest-green);
    color: var(--white);
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
}

.cookie-table td {
    color: var(--slate-gray);
}

.business-model-content {
    padding: 80px 0;
}

.model-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.model-intro h2 {
    margin-bottom: 1rem;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.model-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(22, 101, 52, 0.1);
}

.model-icon {
    color: var(--copper);
    margin-bottom: 1rem;
}

.model-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.model-card ul {
    list-style: none;
    margin-bottom: 0;
}

.model-card li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--slate-gray);
    font-size: 0.95rem;
}

.model-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--forest-green);
}

.data-collection-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.data-collection-section h2 {
    margin-bottom: 1rem;
}

.data-collection-section > p {
    margin-bottom: 2rem;
}

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

.data-item {
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 8px;
}

.data-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--forest-dark);
}

.data-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.service-delivery-section h2 {
    margin-bottom: 2rem;
}

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

.delivery-step {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.delivery-step .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.delivery-step h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.delivery-step p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-step {
        flex: 0 0 30%;
        margin-bottom: 2rem;
    }

    .process-steps::before {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: 1;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-item {
        grid-template-columns: 1fr;
    }

    .service-detail-item.reverse {
        direction: ltr;
    }

    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .model-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--cream);
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 40px;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-image img {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex: 0 0 45%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .legal-document {
        padding: 1.5rem;
    }

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

    .model-grid {
        grid-template-columns: 1fr;
    }

    .data-grid {
        grid-template-columns: 1fr;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .additional-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 200px;
    }
}
