* {
    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-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
    margin: 0;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background-color: #d4af37;
    color: #1a1a1a;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-cookie:hover {
    background-color: #c19b2e;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ad-notice {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.main-nav a:hover {
    color: #d4af37;
}

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

.hero-image-container {
    flex: 1;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fafafa;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: #555;
    max-width: 520px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-primary:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

.intro-split {
    display: flex;
    align-items: stretch;
}

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

.intro-text {
    flex: 1;
    padding: 100px 60px;
    background-color: #ffffff;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.intro-image {
    flex: 1;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.features-split {
    display: flex;
}

.feature-visual {
    flex: 1;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.feature-list {
    flex: 1;
    padding: 100px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.feature-list h2 {
    font-size: 38px;
    margin-bottom: 48px;
    color: #ffffff;
    font-weight: 700;
}

.feature-item {
    margin-bottom: 40px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #d4af37;
    font-weight: 600;
}

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

.services-highlight {
    padding: 100px 60px;
    background-color: #fafafa;
}

.services-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 32px;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
    display: block;
}

.btn-service {
    padding: 14px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

.btn-service.selected {
    background-color: #d4af37;
    color: #1a1a1a;
}

.split-cta {
    display: flex;
}

.cta-content {
    flex: 1;
    padding: 100px 60px;
    background-color: #d4af37;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c2c2c;
}

.cta-visual {
    flex: 1;
    background-color: #f5f5f5;
    overflow: hidden;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.form-side {
    flex: 1.2;
}

.form-side h2 {
    font-size: 38px;
    margin-bottom: 36px;
    color: #1a1a1a;
    font-weight: 700;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #d5d5d5;
    font-size: 15px;
    font-family: inherit;
    background-color: #fafafa;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    color: #888;
}

.btn-submit {
    padding: 16px 36px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

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

.form-info-side {
    flex: 0.8;
    padding: 40px;
    background-color: #fafafa;
    align-self: flex-start;
}

.form-info-side h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.process-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

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

.trust-split {
    display: flex;
}

.trust-image {
    flex: 1;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.trust-content {
    flex: 1;
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.trust-content blockquote {
    margin-bottom: 40px;
    padding: 28px 0;
    border-top: 2px solid #d4af37;
}

.trust-content blockquote p {
    font-size: 17px;
    line-height: 1.8;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 16px;
}

.trust-content blockquote cite {
    font-size: 14px;
    color: #888;
    font-style: normal;
    font-weight: 600;
}

.footer-split {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 40px;
}

.footer-main {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #cccccc;
}

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

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

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

.footer-column ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #777;
    max-width: 800px;
    margin: 20px auto 0;
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .header-right {
        flex-direction: column;
        gap: 16px;
    }

    .hero-split,
    .intro-split,
    .features-split,
    .split-cta,
    .trust-split {
        flex-direction: column;
    }

    .hero-split {
        height: auto;
    }

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

    .intro-text,
    .feature-list,
    .cta-content,
    .trust-content {
        padding: 60px 30px;
    }

    .services-highlight,
    .form-section {
        padding: 60px 30px;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
}
