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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #d4a574;
    color: #fff;
}

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

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

.btn-reject:hover {
    border-color: #888;
}

.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #d4a574;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 35px;
}

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

.nav a:hover {
    color: #d4a574;
}

.ad-notice {
    background: #f5f5f5;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    border: 1px solid #e0e0e0;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f9f4ef 0%, #f5ebe0 100%);
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4a4a4a;
}

.hero-right {
    flex: 1;
    background: #e8d5c4;
}

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

.btn-primary {
    display: inline-block;
    background: #d4a574;
    color: #fff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #c29563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.intro-section {
    padding: 100px 0;
    background: #fff;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-left,
.content-right {
    flex: 1;
}

.content-right h2,
.content-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.content-right p,
.content-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.content-left img,
.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.services-intro {
    padding: 80px 0;
    background: #f9f4ef;
}

.services-grid {
    padding: 80px 0;
    background: #fff;
}

.service-card {
    display: flex;
    margin-bottom: 60px;
    gap: 50px;
    align-items: center;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.card-image {
    flex: 1;
    background: #e8d5c4;
}

.card-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
}

.card-content {
    flex: 1;
    padding: 30px;
}

.card-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 22px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 20px;
}

.btn-service {
    background: #1a1a1a;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #333;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 0;
    background: #f9f4ef;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.benefit-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    border-left: 4px solid #d4a574;
    font-weight: 500;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.selection-notice {
    background: #fff3cd;
    color: #856404;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #ffeaa7;
    display: block;
}

.selection-notice.hidden {
    display: none;
}

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

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

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

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

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

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

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.trust-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    max-width: 320px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #d4a574;
    font-weight: 700;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

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

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

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

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

.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #888;
}

.page-header {
    background: linear-gradient(135deg, #f9f4ef 0%, #f5ebe0 100%);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-content {
    padding: 80px 0;
    background: #fff;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-narrow h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 600;
}

.content-narrow p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.content-narrow ul,
.content-narrow ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-narrow li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 120px 0;
    background: #fff;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #d4a574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: #fff;
}

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.contact-info-section {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.contact-details {
    flex: 1;
    background: #f9f4ef;
    padding: 40px;
    border-radius: 8px;
}

.contact-details h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #d4a574;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: #e8d5c4;
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 30px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .split-content {
        flex-direction: column;
        gap: 40px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .trust-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .nav {
        gap: 20px;
    }

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