* {
    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: #ffffff;
}

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

.magazine-header {
    background-color: #1a252f;
    color: #ffffff;
    padding: 24px 0;
}

.header-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-section {
    flex: 1;
}

.site-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
    color: #ffffff;
}

.site-tagline {
    font-size: 14px;
    color: #8ea0b3;
    font-style: italic;
}

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

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

.main-nav a:hover {
    color: #64b5f6;
}

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

.hero-editorial {
    margin-bottom: 60px;
}

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

.hero-image-wrapper 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.85) 0%, rgba(0,0,0,0.3) 100%);
    color: #ffffff;
    padding: 60px;
}

.hero-overlay h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 18px;
    max-width: 700px;
    line-height: 1.6;
    color: #e0e0e0;
}

.intro-narrative {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.narrative-columns {
    display: flex;
    gap: 48px;
}

.narrative-main {
    flex: 2;
}

.narrative-main h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #1a252f;
}

.narrative-main p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.narrative-sidebar {
    flex: 1;
}

.info-card {
    background-color: #ffffff;
    padding: 32px;
    border-left: 4px solid #64b5f6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a252f;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    color: #4a5568;
}

.info-card ul li:last-child {
    border-bottom: none;
}

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

.section-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #1a252f;
}

.services-grid-magazine {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 48px;
}

.service-card {
    display: flex;
    gap: 32px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a252f;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #4a5568;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 20px;
    display: block;
}

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

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

.services-link-wrapper {
    text-align: center;
    margin-top: 48px;
}

.view-all-services {
    display: inline-block;
    background-color: #34495e;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.view-all-services:hover {
    background-color: #1a252f;
}

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

.form-layout-split {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a252f;
}

.form-intro p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
}

.form-wrapper {
    flex: 1;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

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

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

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

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

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

.about-preview {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-columns {
    display: flex;
    gap: 56px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a252f;
}

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

.text-link {
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #2980b9;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #1f5f8b;
}

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

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

.site-footer {
    background-color: #1a252f;
    color: #8ea0b3;
    padding: 60px 0 24px;
}

.footer-grid {
    display: flex;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

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

.footer-col ul li a:hover {
    color: #64b5f6;
}

.disclaimer {
    background-color: #151d27;
    padding: 24px;
    margin-bottom: 32px;
    border-left: 3px solid #64b5f6;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #8ea0b3;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #2d3e50;
}

.footer-bottom p {
    font-size: 14px;
    color: #6c7a89;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    display: none;
    z-index: 1000;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    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: #1e8449;
}

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

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

.cookie-link {
    color: #64b5f6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #90caf9;
}

.page-hero {
    background-color: #34495e;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-subtext {
    font-size: 20px;
    color: #bdc3c7;
}

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

.content-layout-magazine {
    display: flex;
    gap: 64px;
}

.main-content {
    flex: 2;
}

.main-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a252f;
}

.main-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: #2c3e50;
}

.main-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.feature-block {
    background-color: #f8f9fa;
    padding: 32px;
    margin: 32px 0;
    border-left: 4px solid #2980b9;
}

.feature-block h4 {
    margin-top: 0;
}

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

.methodology-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.methodology-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: 700;
}

.sidebar-content {
    flex: 1;
}

.sidebar-card {
    background-color: #ffffff;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid #e0e0e0;
}

.sidebar-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a252f;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card ul li {
    padding: 8px 0;
    font-size: 15px;
    color: #4a5568;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-card ul li:last-child {
    border-bottom: none;
}

.sidebar-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.sidebar-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.services-intro p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.service-list-magazine {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.price-display {
    font-size: 36px;
    font-weight: 700;
    color: #2980b9;
    margin: 24px 0;
}

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

.contact-layout {
    display: flex;
    gap: 64px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a252f;
}

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

.contact-detail h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-detail .note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 8px;
}

.contact-image-block {
    flex: 1;
    background-color: #ecf0f1;
}

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

.thanks-section {
    padding: 120px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 24px;
    margin-bottom: 40px;
    border-left: 4px solid #27ae60;
}

.service-note {
    font-size: 17px;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 48px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.next-steps h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a252f;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps ol li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

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

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

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

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

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

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a252f;
}

.updated-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 40px 0 16px;
    color: #2c3e50;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 24px 0 12px;
    color: #34495e;
}

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

.legal-content ul {
    margin: 16px 0 24px 24px;
}

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

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 24px;
    }

    .main-nav {
        gap: 20px;
    }

    .hero-overlay {
        padding: 32px 24px;
    }

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

    .narrative-columns,
    .about-columns,
    .form-layout-split,
    .content-layout-magazine,
    .contact-layout {
        flex-direction: column;
    }

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

    .service-card:nth-child(even),
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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