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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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;
    min-width: 300px;
}

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

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

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding-left: 20px;
    border-left: 1px solid #e0e0e0;
}

.hero-editorial {
    padding: 60px 0 40px 0;
}

.hero-image-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px auto;
    background-color: #ecf0f1;
}

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

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-narrow h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-text-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.intro-story {
    padding: 60px 0;
    background-color: #fafafa;
}

.lead-paragraph {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #2c3e50;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    display: block;
    object-fit: cover;
    background-color: #ecf0f1;
}

.intro-story h2 {
    font-size: 32px;
    margin: 50px 0 20px 0;
    color: #1a1a1a;
    font-weight: 400;
}

.intro-story p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 400;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 380px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 15px 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 20px 15px 20px;
    color: #555555;
}

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

.btn-primary {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.trust-section h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.trust-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial {
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

.inquiry-form-section {
    padding: 80px 0;
}

.inquiry-form-section h2 {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 400;
}

.inquiry-form {
    background-color: #f8f9fa;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #bdc3c7;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
}

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

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

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

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

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

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

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

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

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

.thanks-message p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.about-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
}

.about-content h2 {
    font-size: 32px;
    margin: 50px 0 20px 0;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-detail-section {
    padding: 80px 0;
}

.services-detail-section h1 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
}

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

.contact-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
}

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

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

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

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

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

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

    .footer-content {
        flex-direction: column;
    }

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