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

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

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.3;
    font-weight: 700;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    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;
    min-width: 300px;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.main-header {
    background: #fff;
    border-bottom: 3px solid #1a1a1a;
}

.header-top {
    padding: 24px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.brand-zone {
    flex: 1;
}

.site-logo {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.tagline {
    font-family: 'Georgia', serif;
    font-size: 14px;
    font-style: italic;
    color: #666;
}

.ad-disclosure {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 8px 16px;
    border-radius: 4px;
}

.ad-disclosure span {
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #856404;
    font-weight: 600;
}

.main-nav {
    padding: 16px 0;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.nav-list a {
    text-decoration: none;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-list a:hover {
    color: #e74c3c;
}

.hero-magazine {
    padding: 60px 0;
    background: #fff;
}

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

.featured-main {
    flex: 2;
    min-width: 600px;
}

.featured-image {
    width: 100%;
    height: 480px;
    overflow: hidden;
    margin-bottom: 24px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.featured-content .category {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.featured-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-content p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #333;
}

.cta-primary {
    display: inline-block;
    background: #2c3e50;
    color: #fff;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.3s;
}

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

.sidebar-articles {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mini-article {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 16px;
}

.mini-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 16px;
}

.mini-img img {
    width: 100%;
    height: 100%;
    display: block;
}

.mini-article h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.mini-article p {
    font-size: 14px;
    color: #555;
}

.intro-statement {
    padding: 80px 0;
    background: #1a1a1a;
    color: #fff;
}

.lead-text {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 300;
    text-align: center;
}

.services-preview {
    padding: 100px 0;
    background: #f5f5f5;
}

.section-header-offset {
    margin-bottom: 60px;
}

.section-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.section-header-offset h2 {
    font-size: 48px;
    max-width: 700px;
}

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

.service-card {
    background: #fff;
    flex: 1 1 calc(50% - 20px);
    min-width: 400px;
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
}

.service-visual {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

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

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.price {
    font-size: 24px;
    font-weight: 900;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select {
    background: #e74c3c;
    color: #fff;
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #c0392b;
}

.highlight-card {
    border: 3px solid #e74c3c;
}

.trust-block {
    padding: 100px 0;
    background: #fff;
}

.trust-content {
    flex: 1;
    min-width: 400px;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #333;
}

.trust-visual {
    flex: 1;
    min-width: 400px;
    height: 420px;
    overflow: hidden;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.form-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.main-form {
    background: #fff;
    padding: 50px;
    border: 1px solid #ddd;
}

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #27ae60;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.3s;
}

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

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

.disclaimer-box {
    background: #fef5e7;
    border-left: 5px solid #f39c12;
    padding: 32px;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #d68910;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.page-header {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #ccc;
}

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

.content-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    margin-top: 40px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 32px;
}

.content-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #333;
}

.content-section ul, .content-section ol {
    margin-left: 32px;
    margin-bottom: 24px;
}

.content-section li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #333;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    text-align: center;
}

.member-photo {
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #34495e;
}

.member-photo img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.team-member .role {
    font-size: 15px;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.team-member p {
    font-size: 15px;
    color: #555;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 50px;
}

.contact-info, .contact-map {
    flex: 1;
    min-width: 320px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
}

.info-item {
    margin-bottom: 28px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.info-item p {
    font-size: 16px;
    color: #555;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #bdc3c7;
}

.map-placeholder p {
    color: #7f8c8d;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
    background: #fff;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.selected-service-info {
    background: #ecf0f1;
    padding: 24px;
    margin: 32px 0;
    border-left: 4px solid #3498db;
}

.selected-service-info p {
    font-size: 16px;
    margin: 0;
}

.back-home {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 36px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.3s;
}

.back-home:hover {
    background: #1a252f;
}

@media (max-width: 768px) {
    .featured-main {
        min-width: 100%;
    }

    .sidebar-articles {
        min-width: 100%;
    }

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

    .trust-content, .trust-visual {
        min-width: 100%;
    }

    .team-member {
        min-width: 100%;
    }

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

    .featured-content h2 {
        font-size: 32px;
    }

    .section-header-offset h2 {
        font-size: 36px;
    }

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

    .container-split {
        gap: 40px;
    }
}