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

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

.main-nav {
    background: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-ad-notice {
    font-size: 0.85rem;
    color: #ffd700;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

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

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image {
    flex: 1;
    background-color: #dfe6e9;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.cta-primary:hover {
    background: #1a252f;
}

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

.split-image-left {
    flex: 1;
    background-color: #b2bec3;
}

.split-image-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.split-text-right {
    flex: 1;
    padding: 5rem 4rem;
    background: #ffffff;
}

.split-text-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-text-right p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #555;
}

.split-reverse {
    display: flex;
    align-items: stretch;
    background: #ecf0f1;
}

.split-text-left {
    flex: 1;
    padding: 5rem 4rem;
}

.split-text-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

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

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

.split-image-right {
    flex: 1;
    background-color: #dfe6e9;
}

.split-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-intro {
    padding: 4rem 2rem;
    text-align: center;
    background: #2c3e50;
    color: #ffffff;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 220px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    padding: 1.5rem 1.5rem 1rem;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1a252f;
}

.form-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.1rem;
    color: #666;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.selected-display {
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: #ecf0f1;
    border-radius: 6px;
    border: 2px solid #2c3e50;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.split-testimonial .split-text-left {
    background: #2c3e50;
    color: #ffffff;
}

.split-testimonial .split-text-left h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

blockquote {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid #ffd700;
}

blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    color: #ecf0f1;
    margin-bottom: 0.8rem;
}

cite {
    font-style: normal;
    color: #bdc3c7;
    font-size: 0.95rem;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fff3cd;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-left: 5px solid #ffc107;
    border-radius: 6px;
}

.disclaimer-box h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.disclaimer-box p {
    color: #856404;
    line-height: 1.7;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-col p {
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #7f8c8d;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #ffd700;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-reject {
    background: #7f8c8d;
    color: #ffffff;
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.9;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.thanks-box h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-box p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-service {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 2rem 0;
}

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

    .hero-content,
    .split-text-left,
    .split-text-right {
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

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

.page-header {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.page-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #34495e;
}

.page-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.page-content ul,
.page-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin: 0.8rem 0;
    font-size: 1.05rem;
}

.about-split {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
    align-items: center;
}

.about-image {
    flex: 1;
    background-color: #dfe6e9;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

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