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

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

.main-header {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.ad-notice {
    background-color: #ff6b35;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

.hero-text-content {
    max-width: 540px;
}

.hero-text-content h2 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #444;
    line-height: 1.7;
}

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #ff6b35;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 6rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

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

.split-image-container {
    flex: 1;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

.split-content-container {
    flex: 1;
    padding: 2rem;
}

.split-content-container h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.split-content-container p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.75;
}

.services-grid-section {
    background-color: #fafafa;
    padding: 5rem 2rem;
}

.section-intro-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-intro-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.section-intro-centered p {
    font-size: 1.15rem;
    color: #666;
}

.services-split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    align-items: stretch;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-image-area {
    flex: 1;
    background-color: #ccc;
    min-height: 350px;
}

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

.service-details-area {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details-area h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-details-area p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.select-service-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    gap: 5rem;
    padding: 0 2rem;
    align-items: center;
}

.form-left-content {
    flex: 1;
}

.form-left-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.form-left-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: #333;
    position: relative;
    padding-left: 2rem;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 800;
    font-size: 1.3rem;
}

.form-right-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #ff6b35;
    color: #ffffff;
    border: none;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.trust-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
}

.trust-content-centered {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content-centered h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3.5rem;
    font-weight: 800;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ff6b35;
    font-weight: 700;
}

.trust-item p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.main-footer {
    background-color: #0f0f0f;
    color: #ffffff;
    padding: 3.5rem 2rem 1.5rem;
}

.footer-split-layout {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 5rem;
    justify-content: space-between;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff6b35;
    font-weight: 700;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #bbb;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    max-width: 1400px;
    margin: 0 auto;
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-accept {
    background-color: #ff6b35;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #444;
    color: #ffffff;
}

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

.thanks-container {
    max-width: 800px;
    margin: 8rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.thanks-container .selected-service-display {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #333;
}

.thanks-container .selected-service-display strong {
    color: #ff6b35;
    font-size: 1.3rem;
}

.back-home-link {
    display: inline-block;
    margin-top: 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.about-hero-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.about-hero-left {
    flex: 1;
    padding: 4rem;
    background-color: #f0f0f0;
}

.about-hero-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
    line-height: 1.1;
}

.about-hero-left p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.7;
}

.about-hero-right {
    flex: 1;
    background-color: #ddd;
}

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

.story-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.story-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.story-image {
    flex: 1;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-page-layout {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.contact-intro p {
    font-size: 1.15rem;
    color: #666;
}

.contact-info-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-info-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.legal-page-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-page-container h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-page-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.legal-page-container p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-page-container ul li {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .about-hero-split,
    .story-split,
    .contact-info-grid {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-card-split.reverse,
    .story-split.reverse {
        flex-direction: column;
    }

    .trust-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-split-layout {
        flex-direction: column;
        gap: 2.5rem;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-text-content h2 {
        font-size: 2.2rem;
    }

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