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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

ul {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

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

.cookie-content p {
    flex: 1 1 60%;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

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

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

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

.header-top {
    background-color: #f9fafb;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.ad-disclosure {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

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

.hero-magazine {
    position: relative;
    margin-bottom: 4rem;
}

.hero-featured {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1f2937;
}

.hero-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    max-width: 900px;
}

.hero-overlay p {
    font-size: 1.25rem;
    max-width: 700px;
    color: #e5e7eb;
}

.magazine-grid {
    display: flex;
    gap: 3rem;
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.grid-main-column {
    flex: 1 1 65%;
}

.grid-sidebar {
    flex: 1 1 30%;
}

.featured-article {
    margin-bottom: 3rem;
}

.featured-article h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.featured-article p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.featured-article img {
    margin: 2rem 0;
    border-radius: 4px;
}

.insight-block {
    background-color: #f9fafb;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-left: 4px solid #2563eb;
}

.insight-block h3 {
    margin-top: 0;
}

.multi-column-section {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.column-left {
    flex: 1 1 55%;
}

.column-right {
    flex: 1 1 40%;
}

.column-right img {
    border-radius: 4px;
}

.benefits-reveal {
    margin-bottom: 3rem;
}

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

.benefits-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.grid-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card,
.sidebar-cta,
.sidebar-latest {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.sidebar-card h4,
.sidebar-cta h4,
.sidebar-latest h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

blockquote {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

blockquote:last-of-type {
    border-bottom: none;
}

blockquote p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

cite {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: normal;
}

.sidebar-cta {
    background-color: #eff6ff;
    border-color: #2563eb;
}

.btn-sidebar {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-sidebar:hover {
    background-color: #1e40af;
    color: #ffffff;
}

.sidebar-latest ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-latest li {
    margin-bottom: 0.75rem;
}

.sidebar-latest a {
    color: #1a1a1a;
    font-weight: 500;
}

.sidebar-latest a:hover {
    color: #2563eb;
}

.trust-building {
    background-color: #f9fafb;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
}

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

.cta-inline {
    background-color: #1f2937;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
}

.cta-content-wide {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-content-wide h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content-wide p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.btn-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.services-page {
    max-width: 1400px;
    margin: 0 auto;
}

.services-hero {
    background-color: #f9fafb;
    padding: 4rem 2rem;
    text-align: center;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.5rem);
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-image {
    height: 250px;
    overflow: hidden;
    background-color: #f3f4f6;
}

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-content p {
    margin-bottom: 1.5rem;
}

.service-content ul {
    margin-bottom: 1.5rem;
}

.service-pricing {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.contact-form-section {
    background-color: #f9fafb;
    padding: 4rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #6b7280;
}

.service-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.about-page {
    max-width: 1400px;
    margin: 0 auto;
}

.about-intro {
    display: flex;
    gap: 3rem;
    padding: 4rem 2rem;
    align-items: center;
    background-color: #f9fafb;
}

.intro-content {
    flex: 1 1 50%;
}

.intro-image {
    flex: 1 1 45%;
}

.intro-image img {
    border-radius: 8px;
}

.about-story {
    padding: 4rem 2rem;
}

.story-layout {
    display: flex;
    gap: 3rem;
}

.story-main {
    flex: 1 1 65%;
}

.story-sidebar {
    flex: 1 1 30%;
}

.team-highlight,
.values-card {
    background-color: #f9fafb;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.about-approach {
    background-color: #f9fafb;
    padding: 4rem 2rem;
}

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

.approach-item {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.approach-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.approach-item h3,
.approach-item p {
    padding: 0 1.5rem;
}

.approach-item h3 {
    padding-top: 1.5rem;
}

.approach-item p {
    padding-bottom: 1.5rem;
}

.about-mission {
    padding: 4rem 2rem;
}

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

.about-cta {
    background-color: #1f2937;
    padding: 4rem 2rem;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-box h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.contact-info-layout {
    display: flex;
    gap: 3rem;
    padding: 4rem 2rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1 1 45%;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.contact-block p {
    color: #4b5563;
}

.contact-image {
    flex: 1 1 50%;
}

.contact-image img {
    border-radius: 8px;
}

.contact-additional {
    background-color: #f9fafb;
    padding: 4rem 2rem;
}

.additional-info {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.thanks-content {
    text-align: center;
}

.thanks-message h1 {
    color: #059669;
    margin-bottom: 1rem;
}

.thanks-details {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.service-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.thanks-next-steps {
    text-align: left;
    margin: 2rem 0;
}

.thanks-next-steps h3 {
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h1 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #2563eb;
}

.legal-content h2 {
    margin-top: 2.5rem;
    color: #1f2937;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.875rem;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.cookies-table th {
    background-color: #f9fafb;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.site-footer {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 3rem 2rem 1rem;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
}

.footer-col h5 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #d1d5db;
    font-size: 0.95rem;
}

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

.footer-references {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-references h5 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references li {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-references a {
    color: #93c5fd;
}

.footer-references a:hover {
    color: #dbeafe;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #374151;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .magazine-grid {
        flex-direction: column;
    }

    .grid-sidebar {
        position: static;
    }

    .multi-column-section {
        flex-direction: column;
    }

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

    .about-intro {
        flex-direction: column;
    }

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

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

    .contact-info-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-featured {
        height: 400px;
    }

    .hero-overlay {
        padding: 2rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .magazine-grid {
        padding: 0 1rem;
    }

    .services-grid {
        padding: 2rem 1rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

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

    .footer-columns {
        flex-direction: column;
        gap: 2rem;
    }
}