* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

.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 {
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept {
    background: #4a90e2;
    color: white;
}

.btn-accept:hover {
    background: #357abd;
}

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background: #f0f0f0;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

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

.nav-menu a:hover {
    color: #4a90e2;
}

.hero-visual {
    margin-top: 60px;
    height: 90vh;
    min-height: 600px;
    position: relative;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.intro-flow {
    padding: 100px 40px;
    background: #fafafa;
}

.intro-text-narrow {
    max-width: 700px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    color: #333;
}

.image-overlay-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.image-overlay-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px;
}

.overlay-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.overlay-content p {
    font-size: 20px;
    line-height: 1.7;
}

.services-visual {
    padding: 120px 40px;
}

.section-title-center {
    text-align: center;
    font-size: 48px;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.service-card-visual {
    display: flex;
    margin-bottom: 100px;
    gap: 60px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    position: relative;
    background-color: #e8e8e8;
}

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

.service-content {
    flex: 1;
    padding: 40px;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2a4858;
    margin-bottom: 25px;
}

.btn-select-service {
    padding: 14px 32px;
    background: #1a1a1a;
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #333;
    transform: translateX(5px);
}

.image-text-overlay {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.image-text-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.overlay-text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    max-width: 600px;
    color: #1a1a1a;
}

.overlay-text-box h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.no-list {
    list-style: none;
}

.no-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.no-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    font-size: 24px;
    color: #e74c3c;
}

.form-section {
    padding: 120px 40px;
    background: #f5f5f5;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2a4858;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1a3040;
}

.trust-minimal {
    padding: 100px 40px;
    background: #1a1a1a;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-statement {
    font-size: 22px;
    line-height: 1.8;
    color: #ffffff;
}

.footer {
    background: #0a0a0a;
    color: #cccccc;
    padding: 60px 40px 40px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section a:hover {
    color: white;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.about-hero {
    height: 500px;
    position: relative;
    overflow: hidden;
    background-color: #2a4858;
    margin-top: 60px;
}

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

.about-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    padding: 40px;
}

.about-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.about-content {
    padding: 100px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    margin-top: 60px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.contact-page {
    padding: 140px 40px 100px;
    min-height: calc(100vh - 200px);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

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

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

.contact-detail {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.contact-detail strong {
    display: block;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.legal-page {
    padding: 140px 40px 100px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

.legal-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-container ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.services-page {
    padding: 140px 40px 100px;
}

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

.services-container h1 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 40px;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-service {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.btn-home {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-home:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .service-card-visual,
    .service-card-visual.reverse {
        flex-direction: column;
    }

    .nav-menu {
        display: none;
    }

    .section-title-center {
        font-size: 32px;
    }

    .overlay-content h2 {
        font-size: 32px;
    }

    .form-container {
        padding: 40px 30px;
    }

    .footer-content {
        flex-direction: column;
    }
}