* {
    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: #1a1a1a;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 60px 5%;
    gap: 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hero-content-offset {
    flex: 1;
    max-width: 580px;
    padding-left: 40px;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 36px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}

.hero-visual-stack {
    flex: 1;
    position: relative;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
    background-color: #e5e7eb;
}

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

.intro-offset {
    display: flex;
    padding: 100px 5% 80px;
    gap: 80px;
    align-items: flex-start;
    background: #ffffff;
}

.intro-narrow {
    flex: 1.3;
    max-width: 620px;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
}

.intro-visual-right {
    flex: 1;
    margin-top: 40px;
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.intro-visual-right img {
    width: 100%;
    height: auto;
}

.services-asymmetric {
    padding: 120px 5% 100px;
    background: #f9fafb;
}

.services-header-left {
    max-width: 580px;
    margin-bottom: 60px;
    padding-left: 20px;
}

.services-header-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header-left p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-left: 60px;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-card.selected {
    border: 3px solid #2563eb;
}

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

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

.service-card h3 {
    font-size: 22px;
    padding: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 24px 16px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.service-price {
    padding: 0 24px 16px;
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.service-select {
    margin: 0 24px 24px;
    padding: 14px 24px;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s;
}

.service-select:hover {
    background: #e5e7eb;
    border-color: #2563eb;
}

.service-card.selected .service-select {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.contact-form-section {
    padding: 100px 5%;
    background: #ffffff;
}

.form-container-offset {
    max-width: 620px;
    margin-left: 120px;
}

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.selected-service-display {
    padding: 16px 20px;
    background: #f3f4f6;
    border-left: 4px solid #94a3b8;
    margin-bottom: 32px;
    border-radius: 4px;
    font-weight: 600;
    color: #475569;
}

.selected-service-display.active {
    background: #dbeafe;
    border-left-color: #2563eb;
    color: #1e40af;
}

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

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

.form-group label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 16px 32px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}

.submit-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

.trust-section {
    display: flex;
    padding: 100px 5%;
    gap: 80px;
    align-items: center;
    background: #f8fafc;
}

.trust-content-left {
    flex: 1;
    max-width: 560px;
}

.trust-content-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.trust-content-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.trust-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    background-color: #e5e7eb;
}

.trust-visual img {
    width: 100%;
    height: auto;
}

.disclaimer-section {
    padding: 80px 5%;
    background: #fef3c7;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #92400e;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #78350f;
}

.main-footer {
    background: #1f2937;
    color: #e5e7eb;
    padding: 60px 5% 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 24px 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #2563eb;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #1d4ed8;
}

.cookie-reject {
    background: #4b5563;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #374151;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

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

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

.thanks-service {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 4px solid #2563eb;
}

.thanks-service strong {
    color: #2563eb;
}

.back-home {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-home:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

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

.page-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 19px;
    color: #6b7280;
}

.page-content {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #1a1a1a;
}

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.content-section ul {
    margin: 16px 0;
    padding-left: 32px;
}

.content-section li {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 8px;
}

.about-grid {
    display: flex;
    gap: 60px;
    margin: 60px 0;
    align-items: flex-start;
}

.about-text {
    flex: 1.2;
}

.about-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background-color: #e5e7eb;
}

.about-visual img {
    width: 100%;
    height: auto;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 60px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-detail-content {
    flex: 1.3;
}

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 20px;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e5e7eb;
    max-height: 300px;
}

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

.contact-info-section {
    background: #f9fafb;
    padding: 80px 5%;
}

.contact-grid {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

.contact-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background-color: #e5e7eb;
}

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

@media (max-width: 968px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 40px 5%;
    }

    .hero-content-offset {
        padding-left: 0;
        max-width: 100%;
    }

    .hero-content-offset h1 {
        font-size: 38px;
    }

    .hero-visual-stack {
        width: 100%;
        transform: rotate(0deg);
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
    }

    .intro-visual-right {
        margin-top: 0;
    }

    .services-grid-offset {
        margin-left: 0;
    }

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

    .form-container-offset {
        margin-left: 0;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

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

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

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

    .nav-links {
        gap: 16px;
    }
}