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

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

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

.container-narrow {
    max-width: 900px;
    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.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;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background-color: #3498db;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-cookie.btn-secondary {
    background-color: #7f8c8d;
}

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

.site-header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

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

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

.hero-editorial {
    margin-top: 0;
}

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

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

.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;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-subtitle {
    color: #ecf0f1;
    font-size: 20px;
    max-width: 600px;
}

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

.intro-columns {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-col-main {
    flex: 2;
}

.intro-col-aside {
    flex: 1;
}

.intro-col-main h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-col-main p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.highlight-box {
    background-color: #ecf0f1;
    padding: 30px;
    border-left: 4px solid #3498db;
}

.highlight-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    padding: 10px 0;
    color: #34495e;
    font-size: 16px;
    border-bottom: 1px solid #bdc3c7;
}

.expertise-list li:last-child {
    border-bottom: none;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 18px;
    color: #7f8c8d;
}

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

.service-card {
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 calc(50% - 15px);
    display: flex;
    flex-direction: column;
}

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

.service-featured {
    flex: 1 1 100%;
    flex-direction: row;
}

.service-image-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #ecf0f1;
}

.service-featured .service-image-wrapper {
    width: 50%;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-featured .service-content {
    width: 50%;
    padding: 50px;
}

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

.service-content p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 20px;
    flex: 1;
}

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

.btn-select-service {
    padding: 14px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.cta-section-inline {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-content-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 18px;
    color: #ecf0f1;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.why-choose-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.why-choose-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-choose-image {
    flex: 1;
    background-color: #ecf0f1;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-content {
    flex: 1;
}

.why-choose-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.feature-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

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

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.contact-form {
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #bdc3c7;
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.disclaimer-content {
    background-color: #ffffff;
    padding: 40px;
    border-left: 4px solid #e67e22;
}

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.disclaimer-content p {
    font-size: 15px;
    color: #34495e;
    line-height: 1.8;
}

.site-footer {
    background-color: #2c3e50;
    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: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .intro-columns {
        flex-direction: column;
    }

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

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

    .service-featured .service-image-wrapper,
    .service-featured .service-content {
        width: 100%;
    }

    .why-choose-layout {
        flex-direction: column;
    }

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

    .contact-form {
        padding: 30px 20px;
    }

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