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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

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

.ad-notice {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 3px;
}

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

.nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #0066cc;
}

.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    margin-bottom: 120px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.hero-text p {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.intro {
    padding: 0 0 120px;
}

.intro h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}

.intro p {
    font-size: 18px;
    color: #444;
    margin-bottom: 28px;
}

.services-preview {
    padding: 120px 0;
    background: #fafafa;
}

.services-preview h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 72px;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 32px 32px 16px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin: 0 32px 24px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 32px 32px;
}

.btn-service {
    display: block;
    width: calc(100% - 64px);
    margin: 0 32px 32px;
    padding: 16px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-service:hover {
    background: #333;
}

.about-snippet {
    padding: 120px 0;
}

.about-snippet h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}

.about-snippet p {
    font-size: 18px;
    color: #444;
    margin-bottom: 28px;
}

.btn-secondary {
    display: inline-block;
    margin-top: 24px;
    padding: 16px 48px;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.contact-section {
    padding: 120px 0;
    background: #fafafa;
}

.contact-section h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    text-align: center;
}

.contact-section > div > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 56px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 56px;
    border: 1px solid #e8e8e8;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-primary {
    width: 100%;
    padding: 20px;
    background: #0066cc;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #0052a3;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    margin-bottom: 56px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    padding: 32px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 32px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #1a1a1a;
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 14px;
    color: #444;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

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

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

.btn-reject {
    background: #e8e8e8;
    color: #1a1a1a;
}

.btn-reject:hover {
    background: #d0d0d0;
}

.page-hero {
    padding: 120px 0 80px;
    background: #fafafa;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.page-hero p {
    font-size: 20px;
    color: #555;
}

.about-content {
    padding: 80px 0;
}

.about-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
    margin-bottom: 64px;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 64px 0 32px;
}

.about-content h2:first-of-type {
    margin-top: 0;
}

.about-content p {
    font-size: 18px;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.7;
}

.cta-block {
    margin-top: 80px;
    padding: 64px;
    background: #fafafa;
    text-align: center;
}

.cta-block h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-block p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 64px;
    margin-bottom: 120px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 32px;
}

.service-detail-content p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 32px 0;
    padding-left: 24px;
}

.service-detail-content li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-detail-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
}

.services-cta {
    padding: 80px 0;
    background: #fafafa;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.services-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
}

.contact-page {
    padding: 80px 0;
}

.contact-info {
    background: #fafafa;
    padding: 48px;
    margin-bottom: 48px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
}

.contact-detail {
    margin-bottom: 28px;
}

.contact-detail h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: #666;
}

.contact-detail p {
    font-size: 17px;
    color: #1a1a1a;
    line-height: 1.6;
}

.thanks-page {
    padding: 120px 0;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

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

.thanks-service {
    background: #fafafa;
    padding: 32px;
    margin: 48px 0;
    font-size: 20px;
    font-weight: 600;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 48px 0 24px;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 16px;
}

.legal-page p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 32px;
}

.legal-page li {
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-note {
    padding: 48px;
    background: #f5f5f5;
}

.contact-note h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-note p {
    font-size: 17px;
    color: #444;
    margin-bottom: 32px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .nav {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
        gap: 24px;
    }

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

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

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