:root {
    --color-primary: #1a237e;
    --color-secondary: #ff6f00;
    --color-accent: #00897b;
    --color-dark: #212121;
    --color-light: #fafafa;
    --color-gray: #757575;
    --color-gray-light: #e0e0e0;
    --color-bg-alt: #f5f5f5;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-soft: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.15);
    --transition-base: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--color-secondary);
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.ad-disclosure {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 8px 0;
    font-size: 12px;
    text-align: center;
}

.header {
    background-color: var(--color-light);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
}

.nav-main {
    display: flex;
    align-items: center;
}

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

.nav-list a {
    color: var(--color-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width var(--transition-base);
}

.nav-list a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    transition: var(--transition-base);
}

.hero-magazine {
    display: flex;
    min-height: 70vh;
    background-color: #1e3a5f;
}

.hero-left {
    flex: 1.2;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-light);
}

.hero-tag {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-light);
    padding: 6px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: #2c5282;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: #e65100;
    color: var(--color-light);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--color-bg-alt);
}

.section-dark {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.section-header {
    margin-bottom: 50px;
}

.section-header-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-dark .section-title {
    color: var(--color-light);
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray);
    max-width: 600px;
}

.section-header-center .section-subtitle {
    margin: 0 auto;
}

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

.magazine-main {
    flex: 2;
}

.magazine-sidebar {
    flex: 1;
}

.article-card {
    background-color: var(--color-light);
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
}

.article-card-image {
    height: 220px;
    background-color: #2c5282;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-content {
    padding: 24px;
}

.article-card-category {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.article-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.article-card-excerpt {
    color: var(--color-gray);
    font-size: 15px;
    line-height: 1.6;
}

.sidebar-widget {
    background-color: var(--color-light);
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
}

.sidebar-widget-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-gray-light);
}

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

.sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-gray-light);
}

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

.sidebar-list a {
    color: var(--color-dark);
    font-size: 14px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--color-light);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: box-shadow var(--transition-base);
}

.service-card:hover {
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--color-light);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.service-description {
    color: var(--color-gray);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
}

.service-price-note {
    font-size: 13px;
    color: var(--color-gray);
    font-weight: normal;
}

.testimonial-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #303f9f 100%);
    color: var(--color-light);
}

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

.testimonial-card {
    flex: 1;
    background-color: rgba(255,255,255,0.1);
    padding: 32px;
    position: relative;
}

.testimonial-quote {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 13px;
    opacity: 0.8;
}

.split-section {
    display: flex;
    min-height: 500px;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    background-color: #2c5282;
    position: relative;
    overflow: hidden;
}

.split-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--color-light);
}

.cta-banner {
    background-color: var(--color-secondary);
    padding: 60px;
    text-align: center;
    color: var(--color-light);
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-banner-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-banner .btn {
    background-color: var(--color-light);
    color: var(--color-secondary);
}

.cta-banner .btn:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.form-section {
    background-color: var(--color-bg-alt);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-light);
    padding: 48px;
    box-shadow: var(--shadow-medium);
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid var(--color-gray-light);
    background-color: var(--color-light);
    transition: border-color var(--transition-base);
    font-family: var(--font-main);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--color-primary);
    color: var(--color-light);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-base);
}

.form-submit:hover {
    background-color: #0d1654;
}

.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 16px;
}

.footer-text {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.7;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bdbdbd;
    font-size: 14px;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid #424242;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #bdbdbd;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #bdbdbd;
    font-size: 13px;
}

.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #303f9f 100%);
    padding: 80px 0;
    color: var(--color-light);
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 12px;
}

.page-breadcrumb {
    font-size: 14px;
    opacity: 0.8;
}

.page-breadcrumb a {
    color: var(--color-light);
}

.content-page {
    padding: 60px 0;
}

.content-page h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--color-primary);
    margin: 40px 0 16px;
}

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

.content-page p {
    margin-bottom: 16px;
    color: var(--color-dark);
}

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

.content-page li {
    margin-bottom: 8px;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1;
    background-color: var(--color-light);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-light);
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.contact-info-text {
    color: var(--color-gray);
    font-size: 15px;
    line-height: 1.6;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--color-accent);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--color-light);
}

.thanks-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.thanks-text {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--color-secondary);
}

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--color-light);
}

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

.cookie-btn-reject {
    background-color: transparent;
    border: 1px solid var(--color-light);
    color: var(--color-light);
}

.cookie-btn-reject:hover {
    background-color: var(--color-light);
    color: var(--color-dark);
}

.disclaimer {
    background-color: #fff3e0;
    border-left: 4px solid var(--color-secondary);
    padding: 20px 24px;
    margin: 40px 0;
    font-size: 14px;
    color: var(--color-dark);
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-gray-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.timeline-year {
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--color-gray);
    font-size: 15px;
}

.stats-grid {
    display: flex;
    gap: 30px;
    text-align: center;
}

.stat-item {
    flex: 1;
    padding: 40px 20px;
    background-color: rgba(255,255,255,0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

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

.team-card {
    flex: 1;
    text-align: center;
}

.team-image {
    width: 150px;
    height: 150px;
    background-color: var(--color-gray-light);
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
}

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

.team-name {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.team-role {
    color: var(--color-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.team-bio {
    color: var(--color-gray);
    font-size: 14px;
    line-height: 1.6;
}

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

    .hero-left {
        padding: 60px 30px;
    }

    .hero-right {
        min-height: 300px;
    }

    .hero-title {
        font-size: 36px;
    }

    .magazine-grid {
        flex-direction: column;
    }

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

    .split-content {
        padding: 60px 30px;
    }

    .split-image {
        min-height: 300px;
    }

    .testimonial-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 45%;
    }

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

    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 45%;
    }

    .team-grid {
        flex-wrap: wrap;
    }

    .team-card {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-main {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-light);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-medium);
        transition: right var(--transition-base);
    }

    .nav-main.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .services-grid {
        flex-direction: column;
    }

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

    .cta-banner {
        padding: 40px 20px;
    }

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

    .footer-col {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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