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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1a1a1a;
    line-height: 1.7;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 24px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background: #ffffff;
    padding: 32px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 12px;
    color: #888888;
    padding: 6px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #2c2c2c;
}

.hero-image-container {
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 40px;
}

.hero-overlay h1 {
    font-size: 68px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

.intro-section {
    padding: 140px 40px;
    background: #ffffff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 48px;
    letter-spacing: -1px;
}

.intro-section p {
    font-size: 19px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 32px;
}

.image-break {
    background-color: #f0f0f0;
}

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

.services-preview {
    padding: 140px 40px;
    background: #fafafa;
}

.services-preview h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -1px;
}

.service-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: #ffffff;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 400;
    margin: 32px 32px 16px;
    letter-spacing: -0.5px;
}

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

.price {
    display: block;
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    margin: 0 32px 32px;
    letter-spacing: -0.5px;
}

.cta-section {
    padding: 100px 40px 80px;
    background: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
}

.form-section {
    padding: 0 40px 140px;
    background: #ffffff;
}

.main-form {
    background: #fafafa;
    padding: 60px;
    border: 1px solid #e0e0e0;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 20px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #3a3a3a;
}

.trust-section {
    padding: 140px 40px;
    background: #2c2c2c;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -1px;
}

.trust-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
}

.trust-item h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #d0d0d0;
}

.final-image {
    background-color: #e8e8e8;
}

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

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #3a3a3a;
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: #ffffff;
}

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

.thanks-content h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.thanks-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 28px;
}

.thanks-content a {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.thanks-content a:hover {
    background: #3a3a3a;
}

.about-hero {
    padding: 120px 40px;
    background: #fafafa;
    text-align: center;
}

.about-hero h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -1.5px;
}

.about-hero p {
    font-size: 20px;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    padding: 100px 40px;
    background: #ffffff;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #3a3a3a;
    margin-bottom: 28px;
}

.services-hero {
    padding: 120px 40px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.services-hero h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -1.5px;
}

.services-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-detail {
    padding: 120px 40px;
    background: #ffffff;
}

.service-item {
    margin-bottom: 100px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-text {
    flex: 1;
    min-width: 320px;
}

.service-text h3 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
}

.service-text .service-price {
    font-size: 28px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

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

.service-image-box {
    flex: 1;
    min-width: 320px;
    background-color: #f0f0f0;
}

.service-image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.contact-hero {
    padding: 120px 40px 80px;
    background: #fafafa;
}

.contact-hero h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
    text-align: center;
}

.contact-info {
    padding: 80px 40px 120px;
    background: #ffffff;
}

.info-grid {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-block {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
}

.info-block h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 12px;
}

.legal-page {
    padding: 120px 40px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 48px;
    letter-spacing: -1.2px;
}

.legal-page h2 {
    font-size: 32px;
    font-weight: 400;
    margin-top: 60px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.legal-page h3 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

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

.legal-page ul {
    margin: 20px 0 20px 40px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 42px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .intro-section h2,
    .services-preview h2,
    .trust-section h2,
    .cta-section h2 {
        font-size: 36px;
    }

    .nav-links {
        gap: 24px;
    }

    .service-grid {
        gap: 32px;
    }

    .main-form {
        padding: 40px 24px;
    }
}