* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    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;
    min-width: 300px;
}

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

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

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

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

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

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

.ad-disclosure {
    background-color: #e74c3c;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
}

.editorial-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.main-nav {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

.editorial-main {
    background-color: #ffffff;
}

.story-flow {
    max-width: 100%;
}

.hero-story {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

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

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.lead-text {
    font-size: 20px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

.opening-line {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #34495e;
}

.narrow-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.narrow-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0 25px;
    color: #2c3e50;
}

.narrow-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.inline-image {
    margin: 40px 0;
    background-color: #ecf0f1;
}

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

.customer-voice {
    background-color: #ecf0f1;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #3498db;
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
}

.customer-voice cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
}

.trust-points {
    list-style: none;
    margin: 30px 0;
}

.trust-points li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
}

.trust-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.service-story-card {
    background-color: #ffffff;
    margin: 40px 0;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-story-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-story-card h3 {
    margin: 20px 20px 10px;
}

.service-story-card p {
    margin: 0 20px 15px;
    font-size: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 15px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.benefit-item {
    margin: 35px 0;
}

.inquiry-form {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 40px 0;
    border-radius: 4px;
}

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

.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 #dcdcdc;
    border-radius: 4px;
    font-size: 16px;
    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: 15px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.editorial-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

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

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

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

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

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.contact-info-item {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
}

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-info-item p {
    margin-bottom: 10px;
    color: #7f8c8d;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-card-full {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-card-content {
    padding: 30px;
}

.service-card-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-page h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.about-page p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 24px;
    margin: 35px 0 15px;
    color: #2c3e50;
}

.legal-page p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
}

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

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

.thanks-page .btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-page .btn-primary:hover {
    background-color: #2980b9;
}

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

    .lead-text {
        font-size: 18px;
    }

    .narrow-content {
        padding: 40px 20px;
    }

    .opening-line {
        font-size: 20px;
    }

    .narrow-content h2 {
        font-size: 26px;
    }

    .inquiry-form {
        padding: 25px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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