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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

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

.nav-magazine {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #2c3e50;
}

.hero-magazine {
    position: relative;
    margin-bottom: 60px;
}

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

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    color: #ffffff;
    padding: 60px 40px;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    max-width: 800px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 600px;
    opacity: 0.95;
}

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

.intro-column {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
}

.intro-text {
    max-width: 720px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.feature-card-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    margin-top: 50px;
}

.feature-card-inline img {
    flex: 1 1 400px;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    background-color: #e9ecef;
}

.feature-card-content {
    flex: 1 1 400px;
    max-width: 600px;
}

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

.feature-card-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
}

.sidebar-magazine {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
}

.quick-info-box,
.testimonial-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #2c3e50;
}

.quick-info-box h3,
.testimonial-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #495057;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
}

.testimonial-box blockquote {
    font-style: italic;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #495057;
}

.testimonial-box cite {
    font-size: 14px;
    color: #6c757d;
    font-style: normal;
}

.full-width-section {
    margin-bottom: 80px;
    background-color: #ffffff;
    padding: 60px 40px;
}

.two-column-editorial {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.column-left,
.column-right {
    flex: 1 1 400px;
}

.column-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.column-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
}

.column-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e9ecef;
}

.services-preview {
    margin-bottom: 80px;
}

.services-preview h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.service-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1 1 400px;
    max-width: 450px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    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-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

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

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

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #495057;
    flex-grow: 1;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

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

.cta-section-inline {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 80px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
}

.form-section {
    background-color: #f8f9fa;
    padding: 60px 40px;
    margin-bottom: 80px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.selected-service-display {
    font-size: 16px;
    margin-bottom: 30px;
    color: #495057;
}

.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 15px;
    font-size: 16px;
    border: 1px solid #ced4da;
    background-color: #ffffff;
    font-family: inherit;
}

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

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

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

.trust-section {
    margin-bottom: 80px;
}

.trust-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

.testimonial-card {
    flex: 1 1 300px;
    max-width: 400px;
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #2c3e50;
}

.testimonial-card p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #495057;
}

.testimonial-card cite {
    font-size: 14px;
    color: #6c757d;
    font-style: normal;
}

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

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col {
    flex: 1 1 250px;
}

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

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

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

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

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1 1 300px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-header p {
    font-size: 18px;
    color: #6c757d;
}

.services-detail {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.service-detail-image {
    flex: 1 1 400px;
    max-width: 600px;
    background-color: #e9ecef;
}

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

.service-detail-content {
    flex: 1 1 400px;
    max-width: 700px;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #495057;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-story {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.story-image {
    flex: 1 1 400px;
    max-width: 600px;
    background-color: #e9ecef;
}

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

.story-text {
    flex: 1 1 400px;
    max-width: 700px;
}

.story-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
}

.philosophy-section h2,
.team-section h2,
.approach-section h2,
.commitment-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.philosophy-item {
    flex: 1 1 300px;
    max-width: 500px;
}

.philosophy-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.team-intro {
    margin-bottom: 40px;
}

.team-intro p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
}

.team-values img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    background-color: #e9ecef;
}

.approach-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.approach-text {
    flex: 1 1 400px;
    max-width: 700px;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
}

.approach-image {
    flex: 1 1 350px;
    max-width: 500px;
    background-color: #e9ecef;
}

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

.commitment-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
    max-width: 900px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-details {
    flex: 1 1 400px;
    max-width: 600px;
}

.contact-details h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.contact-note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 10px;
}

.contact-image {
    flex: 1 1 400px;
    max-width: 600px;
    background-color: #e9ecef;
}

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

.visit-section {
    background-color: #f8f9fa;
    padding: 40px;
}

.visit-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.visit-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #495057;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.faq-item {
    flex: 1 1 300px;
    max-width: 500px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.thanks-section {
    padding: 80px 40px;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #495057;
}

.thanks-service-info {
    background-color: #f8f9fa;
    padding: 20px;
    margin-bottom: 40px;
    border-left: 4px solid #2c3e50;
}

.thanks-service-info p {
    font-size: 17px;
    color: #495057;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #495057;
}

.thanks-image {
    margin: 40px 0;
    background-color: #e9ecef;
}

.thanks-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: cover;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #2c3e50;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
}

.thanks-note {
    font-size: 15px;
    color: #6c757d;
}

.legal-page {
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #495057;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 15px;
    color: #495057;
}

@media (max-width: 768px) {
    .nav-magazine {
        padding: 15px 20px;
    }

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

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

    .hero-overlay p {
        font-size: 16px;
    }

    .magazine-layout,
    .page-content {
        padding: 0 20px;
    }

    .intro-text h2 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 36px;
    }

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

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

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

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }
}