* {
    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.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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 {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

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

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

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

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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 4px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.hero-overlay {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.85), rgba(44, 62, 80, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    padding: 40px;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.cta-button:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.intro-text {
    margin-bottom: 50px;
}

.intro-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.problem-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.problem-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ecf0f1 0%, #ffffff 100%);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 20px);
    min-width: 320px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 24px;
    margin: 20px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 20px 20px;
    color: #555;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin: 0 20px 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #c0392b;
}

.form-section {
    padding: 100px 0;
    background: #2c3e50;
    color: #ffffff;
}

.form-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.form-section p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.order-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #c0392b;
}

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

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

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 56px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 18px;
    color: #555;
}

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

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
}

.main-footer {
    background: #34495e;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 14px;
}

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

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

.about-intro {
    padding: 100px 0;
    background: #ffffff;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-content img {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #ecf0f1;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

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

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

.value-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #e74c3c;
}

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

.mission-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.mission-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-section {
    padding: 100px 0;
    background: #ecf0f1;
    text-align: center;
}

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

.team-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-image img {
    max-width: 900px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #ffffff;
}

.services-detail {
    padding: 80px 0;
    background: #ffffff;
}

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

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price-large {
    font-size: 42px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.service-detail-content ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #e74c3c;
}

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

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

.contact-map img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #ecf0f1;
}

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

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

.faq-item {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.thanks-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

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

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

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.thanks-details {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-next {
    margin: 40px 0;
    text-align: left;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
}

.thanks-next h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-next ul {
    padding-left: 20px;
}

.thanks-next ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #e74c3c;
    color: #ffffff;
}

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

.btn-secondary {
    background: #ffffff;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
}

.legal-content {
    padding: 80px 0;
    background: #ffffff;
}

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

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-content a {
    color: #e74c3c;
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ecf0f1;
    font-style: italic;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        height: auto;
        padding: 15px 20px;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 15px;
    }

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

    .hero-content p {
        font-size: 16px;
    }

    .service-card {
        width: 100%;
    }

    .services-grid {
        gap: 20px;
    }

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

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

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

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