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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: white;
    padding: 24px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 15px;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #27ae60;
    color: white;
}

.cookie-btn.accept:hover {
    background: #229954;
    transform: translateY(-1px);
}

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

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

.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand a {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

.ad-label {
    font-size: 12px;
    color: #6c757d;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 5%;
}

.hero-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
    font-weight: 800;
}

.hero-text p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-visual {
    flex: 0 0 45%;
    background: #e9ecef;
}

.hero-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: white;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #667eea;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

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

.intro-block {
    padding: 100px 0;
    background: white;
}

.intro-block h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.two-column {
    display: flex;
    gap: 60px;
    align-items: center;
}

.text-content {
    flex: 1;
}

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

.image-content {
    flex: 0 0 42%;
    background: #f1f3f5;
}

.image-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.benefit-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.benefit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 0 0 calc(50% - 20px);
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #667eea;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.services-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-item {
    flex: 0 0 calc(50% - 20px);
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-item.selected {
    border: 3px solid #667eea;
}

.service-image {
    width: 100%;
    height: 240px;
    background: #e9ecef;
}

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

.service-details {
    padding: 32px;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-details p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-details .price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    display: block;
    margin-bottom: 20px;
}

.select-btn {
    padding: 14px 28px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.select-btn:hover {
    background: #5568d3;
    transform: translateY(-1px);
}

.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonial-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 0 0 calc(33.333% - 27px);
    background: white;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

.testimonial cite {
    font-style: normal;
    font-size: 14px;
    color: #6c757d;
}

.form-section {
    padding: 100px 0;
    background: white;
}

.form-box {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 10px;
}

.form-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

#selected-display {
    font-size: 16px;
    color: #667eea;
    margin-bottom: 32px;
    font-weight: 600;
}

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

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

.form-field label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-field input,
.form-field textarea {
    padding: 14px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    padding: 16px 36px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

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

.disclaimer-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    font-style: italic;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background: #2c3e50;
    color: white;
    padding: 70px 5% 30px;
}

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

.footer-col {
    flex: 0 0 calc(33.333% - 40px);
}

.footer-col h4 {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-col h5 {
    font-size: 18px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 5%;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
}

.story-section {
    padding: 100px 0;
    background: white;
}

.story-section .content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.story-image {
    flex: 0 0 40%;
    background: #f1f3f5;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value {
    flex: 0 0 calc(50% - 20px);
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.value h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #667eea;
}

.value p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.approach-section {
    padding: 100px 0;
    background: white;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    text-align: center;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
}

.services-detail-section {
    padding: 100px 0;
    background: white;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 34px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-info h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 16px;
}

.service-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-info ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.service-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.duration {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.service-img {
    flex: 0 0 42%;
    background: #f1f3f5;
}

.service-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.pricing-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.pricing-info-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content-section {
    padding: 80px 0;
    background: white;
}

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

.legal-box h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-box h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-box h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #667eea;
}

.legal-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.legal-box ul {
    margin: 16px 0;
    padding-left: 28px;
}

.legal-box ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.legal-box strong {
    color: #2c3e50;
}

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

.thanks-box {
    max-width: 700px;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: white;
}

.thanks-box h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.service-confirmation {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 16px;
    color: #2c3e50;
}

.service-confirmation strong {
    color: #667eea;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .hero-wrapper,
    .two-column,
    .story-section .content-wrapper,
    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .benefit-item,
    .service-item,
    .testimonial,
    .value {
        flex: 0 0 100%;
    }

    .nav-menu {
        gap: 16px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .footer-col {
        flex: 0 0 100%;
    }
}