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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.wide-container {
    max-width: 100%;
    padding: 0;
}

header {
    background-color: #1a472a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.ad-notice {
    font-size: 0.75rem;
    color: #a8d5ba;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin: 0 1rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

nav a:hover {
    color: #7fc99c;
}

.hero-section {
    display: flex;
    min-height: 85vh;
    background-color: #fff;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: #fff;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #c8e6d3;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #f39c12;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.split-section {
    display: flex;
    min-height: 600px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
}

.split-left {
    background-color: #f8f9fa;
}

.split-right {
    background-color: #fff;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.section-label {
    font-size: 0.85rem;
    color: #f39c12;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a472a;
    line-height: 1.3;
}

.section-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.image-container {
    position: relative;
    overflow: hidden;
    background-color: #e8ebe9;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 0;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: #e8ebe9;
}

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

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a472a;
}

.service-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f39c12;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    width: 100%;
    padding: 0.9rem;
    background-color: #1a472a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2d5a3d;
}

.select-service-btn.selected {
    background-color: #f39c12;
}

.form-section {
    background: linear-gradient(135deg, #2d5a3d 0%, #1a472a 100%);
    padding: 5rem 0;
    color: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #c8e6d3;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    font-size: 1rem;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f39c12;
    background-color: rgba(255,255,255,0.15);
}

.form-group select option {
    background-color: #1a472a;
    color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: #f39c12;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
    transform: none;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    background-color: #1a472a;
    color: #fff;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map {
    flex: 1;
    background-color: #e8ebe9;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item-title {
    font-size: 0.85rem;
    color: #a8d5ba;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.5rem;
}

.contact-item-value {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer {
    background-color: #0f2919;
    color: #a8d5ba;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #a8d5ba;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(168, 213, 186, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.disclaimer {
    background-color: #fef5e7;
    border-left: 4px solid #f39c12;
    padding: 2rem;
    margin: 3rem 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.legal-content {
    padding: 4rem 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #1a472a;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a472a;
    margin: 2.5rem 0 1rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    color: #555;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a472a;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #f39c12;
    color: #fff;
}

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

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.about-intro {
    background-color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.about-intro .section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-intro .section-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
}

.values-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f39c12;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 1rem;
}

.value-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.services-intro {
    background-color: #fff;
    padding: 5rem 0 2rem;
    text-align: center;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: #fff;
}

.thanks-box {
    text-align: center;
    max-width: 600px;
    padding: 4rem 2rem;
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.thanks-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.thanks-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #c8e6d3;
    line-height: 1.7;
}

.home-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #f39c12;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.home-link:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .hero-section,
    .split-section,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .split-left,
    .split-right,
    .contact-info {
        min-height: 400px;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

    nav ul {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 1 1 100%;
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}
