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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.625rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #4a90a4;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #3a7a8a;
}

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

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

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

.ad-disclosure {
    background-color: #f5f5f5;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.main-content {
    min-height: calc(100vh - 400px);
}

.editorial-layout {
    padding: 0;
}

.hero-editorial {
    position: relative;
    margin-bottom: 4rem;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.hero-text {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.content-narrow h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.content-narrow h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
    font-weight: 400;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    object-fit: cover;
    background-color: #e8e8e8;
}

.services-preview {
    background-color: #f7f7f7;
    padding: 4rem 0;
    margin: 4rem 0;
}

.service-cards {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 0;
    max-width: 350px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 1.8rem;
    color: #4a90a4;
    font-weight: 700;
    padding: 0 1.5rem;
    margin: auto 0 1rem;
}

.select-service-btn {
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem 1.5rem;
    background-color: #4a90a4;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #3a7a8a;
}

.cta-section {
    margin: 4rem auto;
    text-align: center;
}

.form-section {
    background-color: #f7f7f7;
    padding: 4rem 0;
    margin: 4rem 0;
}

.inquiry-form {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90a4;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.submit-btn {
    padding: 1rem 2.5rem;
    background-color: #4a90a4;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
}

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

.disclaimer {
    background-color: #f5f5f5;
    border-left: 4px solid #4a90a4;
    padding: 1.5rem;
    margin: 3rem 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.disclaimer strong {
    color: #1a1a1a;
}

.footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.625rem;
}

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4a90a4;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.9rem;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin: 4rem 0;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8e8e8;
}

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

.price-large {
    font-size: 2.5rem;
    color: #4a90a4;
    font-weight: 700;
    margin: 1.5rem 0;
}

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #4a90a4;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3a7a8a;
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: #4a90a4;
    border: 2px solid #4a90a4;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #4a90a4;
    color: #ffffff;
}

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.75rem;
    color: #2c2c2c;
    font-weight: 400;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.625rem;
    line-height: 1.7;
}

.legal-content em {
    color: #666;
}

.thanks-section {
    padding: 4rem 0;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.thanks-details {
    background-color: #f5f5f5;
    border-left: 4px solid #4a90a4;
    padding: 1.5rem;
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

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

    .lead {
        font-size: 1.1rem;
    }

    .service-cards {
        flex-direction: column;
    }

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

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

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

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .thanks-actions a {
        text-align: center;
    }
}