* {
    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;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

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

.btn-accept {
    background: #2ecc71;
    color: #fff;
}

.btn-accept:hover {
    background: #27ae60;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-reject:hover {
    background: #fff;
    color: #000;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.hero-fullscreen {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2c3e50;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-hero {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.image-story-section {
    display: flex;
    min-height: 600px;
}

.story-visual {
    flex: 1;
    background-color: #34495e;
}

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

.story-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.story-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.visual-break {
    position: relative;
    height: 70vh;
    overflow: hidden;
    background-color: #16a085;
}

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

.visual-break-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: #fff;
    max-width: 600px;
}

.visual-break-text h3 {
    font-size: 56px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.benefit-visual-grid {
    padding: 100px 60px;
    background: #fff;
}

.benefit-item {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
}

.benefit-item:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.benefit-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.benefit-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.trust-section {
    padding: 100px 60px;
    background: #1a1a1a;
    color: #fff;
}

.trust-content h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    color: #999;
}

.service-selection {
    padding: 100px 60px;
    background: #f8f9fa;
}

.service-selection h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.service-card-image {
    width: 100%;
    height: 280px;
    background-color: #7f8c8d;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 10px;
}

.service-card p {
    margin: 0 20px 15px;
    color: #555;
    font-size: 15px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2ecc71;
    margin: 20px 20px 15px;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 15px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-select.selected {
    background: #2ecc71;
}

.form-section {
    padding: 100px 60px;
    background: #fff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.form-wrapper > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

#selected-service {
    font-weight: 700;
    color: #2ecc71;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

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

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

.btn-submit {
    padding: 18px;
    background: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #27ae60;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.final-visual {
    position: relative;
    height: 60vh;
    overflow: hidden;
    background-color: #34495e;
}

.final-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.final-visual-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
}

.final-visual-text p {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

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

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

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

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

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

.footer-section ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.thanks-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

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

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

.thanks-order-info {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.thanks-order-info p {
    margin-bottom: 10px;
}

.btn-return {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 30px;
    transition: all 0.3s;
}

.btn-return:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.content-page {
    padding: 140px 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
}

.content-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.content-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-page ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

@media (max-width: 1024px) {
    .floating-nav {
        top: 10px;
        padding: 12px 20px;
        gap: 20px;
    }

    .nav-links {
        gap: 15px;
    }

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

    .benefit-item {
        flex-direction: column;
    }

    .benefit-item:nth-child(even) {
        flex-direction: column;
    }

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

    .service-card {
        max-width: calc(50% - 15px);
    }

    .footer-content {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .story-text {
        padding: 40px 30px;
    }

    .story-text h2 {
        font-size: 32px;
    }

    .service-card {
        max-width: 100%;
    }

    .content-page {
        padding: 120px 30px 60px;
    }

    .content-page h1 {
        font-size: 36px;
    }
}