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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #e17055;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #e17055;
}

.ad-notice {
    font-size: 12px;
    color: #636e72;
    padding: 4px 12px;
    background: #f8f9fa;
    border-radius: 4px;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3436;
    color: #ffffff;
    padding: 20px;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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;
    margin: 0;
}

.cookie-content a {
    color: #74b9ff;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

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

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

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

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

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #000000;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.3);
}

.hero-overlay h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: #e17055;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #d35c42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225,112,85,0.4);
}

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

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

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #636e72;
}

.visual-block {
    padding: 60px 0;
    background: #ffffff;
}

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

.column-image {
    flex: 1;
    background: #f1f2f6;
}

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

.column-text {
    flex: 1;
}

.column-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3436;
}

.column-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #636e72;
}

.services-preview {
    padding: 100px 0;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2d3436;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

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

.service-card h3 {
    font-size: 24px;
    padding: 24px 24px 12px;
    color: #2d3436;
}

.service-card p {
    padding: 0 24px;
    color: #636e72;
    font-size: 16px;
    margin-bottom: 16px;
}

.price {
    padding: 12px 24px;
    font-size: 22px;
    font-weight: 700;
    color: #e17055;
}

.select-service-btn {
    margin: 0 24px 24px;
    padding: 12px 28px;
    background: #2d3436;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    width: calc(100% - 48px);
}

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

.trust-section {
    padding: 80px 0;
    background: #2d3436;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.trust-content p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.full-width-image {
    width: 100%;
    height: 500px;
    background: #dfe6e9;
    overflow: hidden;
}

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

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

.process-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2d3436;
}

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

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #e17055;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3436;
}

.step p {
    font-size: 16px;
    color: #636e72;
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2d3436;
}

.form-wrapper > p {
    margin-bottom: 32px;
    color: #636e72;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: #e17055;
}

.order-form textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #e17055;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

.additional-info {
    padding: 80px 0;
    background: #ffffff;
}

.info-blocks {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 300px;
}

.info-block h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d3436;
}

.info-block p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.7;
}

.main-footer {
    background: #2d3436;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-columns {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px !important;
    font-style: italic;
    opacity: 0.6 !important;
    max-width: 800px;
    margin: 12px auto 0;
}

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

.page-header h1 {
    font-size: 46px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

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

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

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

.service-detail-left {
    flex: 1;
    background: #f1f2f6;
}

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

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

.service-detail-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3436;
}

.service-detail-right p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #636e72;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #636e72;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e17055;
    font-weight: 700;
}

.pricing-box {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.price-main {
    font-size: 32px;
    font-weight: 700;
    color: #e17055;
    margin-bottom: 8px;
}

.price-detail {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 4px;
}

.order-cta-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.order-cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2d3436;
}

.order-cta-section p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 32px;
}

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

.about-text-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d3436;
}

.about-text-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #636e72;
    line-height: 1.8;
}

.about-image-section {
    padding: 0;
    background: #f1f2f6;
}

.about-image-section img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.about-values {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-values h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2d3436;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #e17055;
}

.value-item p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.7;
}

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

.about-team h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d3436;
}

.about-team p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #636e72;
    line-height: 1.8;
}

.about-numbers {
    padding: 80px 0;
    background: #2d3436;
    color: #ffffff;
}

.numbers-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.number-item {
    text-align: center;
    min-width: 200px;
}

.number {
    font-size: 56px;
    font-weight: 700;
    color: #e17055;
    margin-bottom: 8px;
}

.number-label {
    font-size: 16px;
    opacity: 0.9;
}

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

.about-partners h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d3436;
}

.about-partners p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #636e72;
    line-height: 1.8;
}

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

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2d3436;
}

.about-cta p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 32px;
}

.contact-content {
    padding: 60px 0 80px;
}

.contact-layout {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2d3436;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3436;
}

.contact-item p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.7;
}

.contact-item .note {
    font-size: 14px;
    font-style: italic;
    opacity: 0.8;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    background: #f8f9fa;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.map-placeholder p {
    font-size: 16px;
    color: #636e72;
}

.contact-additional {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-additional h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #2d3436;
}

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

.info-item {
    flex: 1;
    min-width: 250px;
}

.info-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3436;
}

.info-item p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.7;
}

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

.contact-faq h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #2d3436;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3436;
}

.faq-item p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.7;
}

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

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

.thanks-content > p {
    font-size: 22px;
    color: #636e72;
    margin-bottom: 40px;
}

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

.thanks-details p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 12px;
}

#service-confirmation {
    font-weight: 600;
    color: #e17055;
    font-size: 18px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.secondary-button:hover {
    background: #2d3436;
    color: #ffffff;
    transform: translateY(-2px);
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 48px;
    color: #2d3436;
    text-align: center;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d3436;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #2d3436;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #2d3436;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #636e72;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #636e72;
    line-height: 1.7;
}

.legal-content a {
    color: #e17055;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
    font-style: italic;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav {
        gap: 16px;
    }

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

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

    .two-column-visual {
        flex-direction: column;
    }

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

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

    .process-steps {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
        gap: 32px;
    }

    .contact-layout {
        flex-direction: column;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

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