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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: white;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid #ffffff;
}

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

.header-main {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 25px 0;
}

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

.brand-section {
    flex: 0 0 auto;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 4px;
}

.brand-tagline {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 400;
}

.nav-primary {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

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

.nav-primary a:hover {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 12px;
    color: #95a5a6;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 3px;
}

.hero-split {
    background: #f8f9fa;
    padding: 80px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.hero-text h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a472a;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
}

.cta-primary {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
}

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

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

.intro-asymmetric {
    padding: 100px 0;
}

.intro-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-image-offset {
    flex: 0 0 45%;
    position: relative;
}

.intro-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.intro-text-block {
    flex: 1;
}

.intro-text-block h3 {
    font-size: 32px;
    color: #1a472a;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text-block p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.services-grid {
    background: #fafafa;
    padding: 90px 0;
}

.section-title {
    text-align: center;
    font-size: 38px;
    color: #1a472a;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 21px;
    color: #1a472a;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 18px;
}

.btn-select {
    background: #1a472a;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #27ae60;
}

.why-section {
    padding: 90px 0;
}

.why-split {
    display: flex;
    gap: 70px;
    align-items: center;
}

.why-content {
    flex: 1;
}

.why-content h2 {
    font-size: 36px;
    color: #1a472a;
    margin-bottom: 20px;
    font-weight: 700;
}

.why-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 24px;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #27ae60;
    padding: 14px 32px;
    text-decoration: none;
    border: 2px solid #27ae60;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #27ae60;
    color: white;
}

.why-image {
    flex: 0 0 45%;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.form-section {
    background: #f8f9fa;
    padding: 90px 0;
}

.form-section h2 {
    text-align: center;
    font-size: 36px;
    color: #1a472a;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    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: #27ae60;
}

.btn-submit {
    background: #27ae60;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

.disclaimer-section {
    background: #ecf0f1;
    padding: 40px 0;
}

.disclaimer-text {
    font-size: 13px;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.footer-main {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    color: #bdc3c7;
    font-size: 14px;
}

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

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

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

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

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-content,
    .intro-layout,
    .why-split {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .header-split {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-primary {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}