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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.magazine-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.hero-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-column {
    flex: 1;
}

.hero-text-column h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 800;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #546e7a;
}

.hero-image-column {
    flex: 1;
    background-color: #eceff1;
}

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

.magazine-intro {
    background-color: #f8f9fa;
    padding: 90px 40px;
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
}

.intro-sidebar {
    flex: 0 0 320px;
}

.intro-sidebar h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
    line-height: 1.3;
}

.intro-sidebar p {
    font-size: 16px;
    color: #546e7a;
}

.intro-main {
    flex: 1;
}

.intro-main p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #37474f;
}

.intro-main img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    object-fit: cover;
    background-color: #eceff1;
}

.multi-column-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 40px;
}

.column-container {
    display: flex;
    gap: 50px;
}

.content-column {
    flex: 1;
}

.content-column h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a252f;
}

.content-column p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #546e7a;
}

.content-column img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    object-fit: cover;
    background-color: #eceff1;
}

.services-preview {
    background-color: #fafafa;
    padding: 90px 40px;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a252f;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 0 0 calc(33.333% - 27px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    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.12);
}

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

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: #1a252f;
}

.service-card p {
    padding: 0 25px 15px;
    font-size: 15px;
    color: #546e7a;
}

.service-card .price {
    padding: 10px 25px;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: calc(100% - 50px);
}

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

.inquiry-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 90px 40px;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.form-container p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #546e7a;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.insight-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 90px 40px;
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #ffffff;
}

.insight-columns {
    display: flex;
    gap: 50px;
}

.insight-item {
    flex: 1;
}

.insight-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #ecf0f1;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0bec5;
}

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

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

.footer-column ul li a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #243447;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.7;
    color: #b0bec5;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.about-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 60px;
}

.about-hero-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-hero-content p {
    font-size: 22px;
    color: #546e7a;
    line-height: 1.6;
}

.about-story {
    background-color: #f8f9fa;
    padding: 90px 40px;
}

.story-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
}

.story-main {
    flex: 1;
}

.story-main h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a252f;
}

.story-main p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #37474f;
    line-height: 1.8;
}

.story-main img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    object-fit: cover;
    background-color: #eceff1;
}

.story-sidebar {
    flex: 0 0 350px;
}

.stat-box {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.stat-box p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.7;
}

.team-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 40px;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a252f;
}

.team-grid {
    display: flex;
    gap: 50px;
}

.team-member {
    flex: 1;
}

.team-member img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    background-color: #eceff1;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.team-member p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.values-section {
    background-color: #fafafa;
    padding: 90px 40px;
}

.values-section h2 {
    max-width: 1400px;
    margin: 0 auto 60px;
    font-size: 42px;
    text-align: center;
    color: #1a252f;
}

.values-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 0 0 calc(50% - 20px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #1a252f;
}

.value-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
}

.services-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    text-align: center;
}

.services-header h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a252f;
}

.services-header p {
    font-size: 20px;
    color: #546e7a;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 90px;
}

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

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

.service-image {
    flex: 0 0 480px;
    background-color: #eceff1;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a252f;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.8;
}

.service-price {
    font-size: 20px;
    margin: 30px 0 25px;
    color: #2c3e50;
}

.service-price strong {
    font-size: 32px;
    font-weight: 700;
}

.cta-services {
    background-color: #f8f9fa;
    padding: 80px 40px;
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #546e7a;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

.contact-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    text-align: center;
}

.contact-header h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a252f;
}

.contact-header p {
    font-size: 20px;
    color: #546e7a;
}

.contact-info-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

.contact-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a252f;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.contact-item p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
}

.contact-image {
    flex: 0 0 500px;
    background-color: #eceff1;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.location-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.location-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a252f;
}

.location-section p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #546e7a;
    line-height: 1.8;
}

.location-info {
    margin-top: 25px;
}

.availability-section {
    max-width: 1400px;
    margin: 60px auto 90px;
    padding: 0 40px;
    text-align: center;
}

.availability-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a252f;
}

.availability-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #546e7a;
}

.contact-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.contact-cta:hover {
    background-color: #229954;
}

.thanks-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px 80px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-info {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-info p {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

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

.thanks-button {
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.thanks-button.secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

.thanks-button.secondary:hover {
    background-color: #7f8c8d;
}

.next-steps {
    max-width: 1400px;
    margin: 0 auto 90px;
    padding: 0 40px;
}

.next-steps h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a252f;
}

.steps-grid {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a252f;
}

.step-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #1a252f;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.legal-content p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #546e7a;
    line-height: 1.8;
}

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

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #546e7a;
    line-height: 1.7;
}

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

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

@media (max-width: 1200px) {
    .hero-content,
    .intro-wrapper,
    .column-container,
    .story-layout,
    .team-grid,
    .service-detail,
    .contact-layout,
    .insight-columns,
    .steps-grid {
        flex-direction: column;
    }

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

    .services-grid {
        justify-content: center;
    }

    .service-card {
        flex: 0 0 calc(50% - 20px);
    }

    .hero-text-column h1 {
        font-size: 42px;
    }

    .intro-sidebar,
    .story-sidebar,
    .service-image,
    .contact-image {
        flex: 1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

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

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

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

    .value-item {
        flex: 1;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-text-column h1 {
        font-size: 36px;
    }

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

    .thanks-button {
        width: 100%;
    }
}