* {
    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-color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-accept:hover {
    background-color: #2980b9;
}

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #6c7a7b;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

.main-nav a:hover,
.main-nav a.active {
    color: #3498db;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.hero-card {
    margin-bottom: 60px;
}

.hero-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.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;
    align-items: center;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 600px;
}

.services-grid {
    padding: 60px 0;
}

.services-grid h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 15px 0;
}

.btn-service {
    width: 100%;
    padding: 12px 20px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #2980b9;
}

.why-us {
    padding: 60px 0;
}

.why-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.order-form-section {
    padding: 60px 0;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.form-card > p {
    text-align: center;
    margin-bottom: 30px;
    color: #5a6c7d;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 14px 20px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
    margin-top: 60px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

.footer-col a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #95a5a6;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-header {
    padding: 60px 0 40px;
    text-align: center;
    background-color: #f8f9fa;
}

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

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

.services-detail {
    padding: 60px 0;
}

.service-block {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
}

.note {
    font-size: 14px;
    font-style: italic;
    color: #7f8c8d;
}

.cta-block {
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-cta:hover {
    transform: scale(1.05);
}

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

.about-intro {
    margin-bottom: 60px;
}

.about-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.values-section {
    padding: 50px 30px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.values-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.process-section {
    margin-bottom: 60px;
}

.process-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.expertise-section {
    padding: 40px;
    border-radius: 8px;
}

.expertise-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.contact-section {
    padding: 60px 0;
}

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

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

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

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
}

.map-placeholder {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #7f8c8d;
}

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

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

.thanks-box h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.service-confirmation {
    margin: 30px 0;
}

.service-note {
    font-size: 16px;
    padding: 15px;
    background-color: #e8f5e9;
    border-radius: 4px;
    color: #2c3e50;
}

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

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s;
}

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

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

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

.btn-secondary:hover {
    transform: translateY(-2px);
}

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

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

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

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

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

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

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

.update-date {
    margin-top: 40px;
    font-size: 14px;
    font-style: italic;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .feature-item {
        flex: 1 1 100%;
    }

    .value-card {
        flex: 1 1 100%;
    }

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

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

    .header-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

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