:root {
    --primary: #1a4d5c;
    --secondary: #e67e22;
    --accent: #2c7a4b;
    --dark: #1c2833;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --border: #dee2e6;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

.top-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-menu a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

.hero-magazine {
    display: flex;
    gap: 30px;
    padding: 50px 0;
}

.hero-main {
    flex: 2;
    position: relative;
    background: var(--primary);
    border-radius: 12px;
    overflow: hidden;
    min-height: 450px;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

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

.hero-main-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    color: var(--white);
}

.hero-main-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero-main-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 500px;
}

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-card-img {
    height: 120px;
    background: var(--gray);
}

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

.hero-card-content {
    padding: 20px;
    flex: 1;
}

.hero-card-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark);
}

.hero-card-content p {
    font-size: 14px;
    color: var(--gray);
}

.section-title {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

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

.section-title-center::after {
    left: 50%;
    transform: translateX(-50%);
}

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

.magazine-main {
    flex: 2;
}

.magazine-sidebar {
    flex: 1;
}

.article-card {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.article-card:first-child {
    padding-top: 0;
}

.article-card-img {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--gray);
}

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

.article-card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.article-card-content p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 12px;
}

.read-more {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.sidebar-widget h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
}

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

.sidebar-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

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

.services-section {
    background: var(--white);
    padding: 70px 0;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card-img {
    height: 180px;
    background: var(--gray);
}

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

.service-card-content {
    padding: 25px;
}

.service-card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 15px;
}

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

.btn-primary:hover {
    background: #cf6d14;
}

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

.btn-secondary:hover {
    background: #123a47;
}

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

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

.about-section {
    padding: 70px 0;
}

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 16px;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray);
    min-height: 350px;
}

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

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    padding: 70px 0;
    background: var(--light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

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

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.contact-info-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

.contact-info-item p {
    color: var(--gray);
    font-size: 14px;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.disclaimer {
    background: var(--light);
    padding: 25px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--gray);
    margin-top: 40px;
    line-height: 1.7;
}

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

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

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

.cookie-content p {
    font-size: 14px;
    flex: 1;
}

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

.cookie-btn {
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    border: none;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--white);
}

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

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

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.thanks-container h1 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}

.thanks-container p {
    font-size: 18px;
    color: var(--gray);
    max-width: 500px;
    margin-bottom: 30px;
}

.legal-content {
    padding: 50px 0;
}

.legal-content h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark);
}

.legal-content h2 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--dark);
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--gray);
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    color: var(--gray);
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

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

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.highlight-box {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.highlight-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.highlight-box p {
    opacity: 0.9;
}

.stats-row {
    display: flex;
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray);
    font-size: 14px;
}

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

    .hero-sidebar {
        flex-direction: row;
    }

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

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

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

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

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

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

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-sidebar {
        flex-direction: column;
    }

    .article-card {
        flex-direction: column;
    }

    .article-card-img {
        width: 100%;
        height: 200px;
    }

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

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

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

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

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

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

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