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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #b83f2a;
}

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

.btn-reject:hover {
    background: #fff;
    color: #1a1a1a;
}

.header-magazine {
    background: #fff;
    border-bottom: 3px solid #d4523c;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #d4523c;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.header-tagline {
    background: #2c2c2c;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.header-tagline h1 {
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-editorial {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
}

.hero-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.hero-text-block h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.cta-link {
    display: inline-block;
    padding: 14px 35px;
    background: #d4523c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s;
}

.cta-link:hover {
    background: #b83f2a;
}

.hero-image-block {
    flex: 1;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
}

.split-left {
    flex: 0.9;
}

.split-left img {
    width: 100%;
    height: auto;
    display: block;
}

.split-right {
    flex: 1.1;
    padding: 40px 0;
}

.split-right h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.story-section {
    background: #f5f5f5;
    padding: 80px 30px;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-container h3 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-container p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.multi-column-feature {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    gap: 40px;
}

.feature-col {
    flex: 1;
}

.feature-col img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.feature-col h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-col p {
    font-size: 16px;
    color: #4a4a4a;
}

.trust-builder {
    background: #2c2c2c;
    color: #fff;
    padding: 80px 30px;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content h3 {
    font-size: 36px;
    margin-bottom: 25px;
    text-align: center;
}

.trust-content p {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #d4523c;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #ccc;
    font-family: 'Arial', sans-serif;
}

.testimonials-inline {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

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

.testimonial-card {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-left: 4px solid #d4523c;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.testimonial-card cite {
    font-size: 14px;
    font-style: normal;
    color: #888;
    font-family: 'Arial', sans-serif;
}

.services-preview {
    background: #fff;
    padding: 80px 30px;
}

.services-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 18px;
    color: #4a4a4a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 35px);
    min-width: 300px;
    background: #fafafa;
    padding: 35px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #d4523c;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.btn-select {
    width: 100%;
    padding: 14px 20px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #1a1a1a;
}

.form-section {
    background: #f5f5f5;
    padding: 80px 30px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: 'Georgia', serif;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 20px;
    background: #d4523c;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s;
}

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

.final-cta {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 30px;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ccc;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: #d4523c;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s;
}

.btn-cta-large:hover {
    background: #b83f2a;
}

.insight-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 30px;
    text-align: center;
}

.insight-container h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.insight-container p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.footer-magazine {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 30px 30px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #d4523c;
}

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

.footer-col a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #d4523c;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
    font-family: 'Arial', sans-serif;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 16px 30px;
    background: #d4523c;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 4px 15px rgba(212, 82, 60, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #b83f2a;
    box-shadow: 0 6px 20px rgba(212, 82, 60, 0.6);
}

.page-hero {
    background: #2c2c2c;
    color: #fff;
    text-align: center;
    padding: 80px 30px;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 18px;
    color: #ccc;
}

.about-story {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.story-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.story-image {
    flex: 1;
}

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

.approach-section {
    background: #f5f5f5;
    padding: 80px 30px;
}

.approach-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.approach-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
    background: #fff;
    padding: 35px;
    border-left: 4px solid #d4523c;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.approach-item p {
    font-size: 16px;
    color: #4a4a4a;
}

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

.team-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 0 1 300px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.values-section {
    background: #2c2c2c;
    color: #fff;
    padding: 80px 30px;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
}

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

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

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

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

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #d4523c;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a4a4a;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info-block h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-detail {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-detail a {
    color: #d4523c;
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

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

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

.contact-cta-section {
    background: #f5f5f5;
    padding: 80px 30px;
    text-align: center;
}

.thanks-hero {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 30px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.confirmation-details {
    background: #f5f5f5;
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.confirmation-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.next-steps li {
    font-size: 17px;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.selected-service-thanks {
    font-size: 18px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.thanks-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2c2c2c;
    color: #fff;
}

.thanks-info {
    background: #f5f5f5;
    padding: 60px 30px;
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.info-block {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-left: 4px solid #d4523c;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 16px;
    color: #4a4a4a;
}

.info-block a {
    color: #d4523c;
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 30px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.legal-page p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.legal-page a {
    color: #d4523c;
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .hero-grid,
    .intro-split,
    .story-grid,
    .multi-column-feature,
    .testimonial-grid,
    .contact-grid,
    .info-grid {
        flex-direction: column;
    }

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .approach-item {
        flex: 1 1 100%;
    }
}

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

    .main-nav {
        gap: 20px;
    }

    .header-tagline h1 {
        font-size: 28px;
    }

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

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

    .trust-stats {
        gap: 40px;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

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

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