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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

.container-fluid {
    max-width: 100%;
    padding: 0 40px;
}

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

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

.cookie-banner.show {
    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;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand h1 {
    font-size: 1.5rem;
    color: #1a5490;
    font-weight: 700;
}

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

.nav-main a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-label {
    background: #ffeaa7;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d3436;
}

.hero-editorial {
    padding: 60px 0 0 0;
    background: #f8f9fa;
}

.hero-content-editorial {
    text-align: center;
    padding: 40px 20px;
}

.hero-content-editorial h2 {
    font-size: 2.8rem;
    color: #1a5490;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-lead {
    font-size: 1.3rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.hero-image-full {
    width: 100%;
    overflow: hidden;
    background: #dfe6e9;
}

.hero-image-full img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.intro-block {
    padding: 80px 20px;
    background: #ffffff;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #34495e;
    text-align: justify;
}

.services-grid-offset {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.service-card-featured {
    flex: 1 1 100%;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card-featured .service-image {
    width: 100%;
    background: #dfe6e9;
}

.service-card-featured .service-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.service-card-featured .service-body {
    padding: 40px;
}

.service-card-featured h3 {
    font-size: 2rem;
    color: #1a5490;
    margin-bottom: 20px;
}

.service-card-featured p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.service-card-compact {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-card-compact.highlight {
    background: #1a5490;
    color: #ffffff;
}

.service-card-compact.highlight h3,
.service-card-compact.highlight p {
    color: #ffffff;
}

.service-card-compact h3 {
    font-size: 1.5rem;
    color: #1a5490;
    margin-bottom: 15px;
}

.service-card-compact p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.service-card-compact .service-image-small {
    width: 100%;
    margin-bottom: 20px;
    background: #dfe6e9;
    border-radius: 6px;
    overflow: hidden;
}

.service-card-compact .service-image-small img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.service-card-wide {
    flex: 1 1 100%;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-card-wide h3 {
    font-size: 1.8rem;
    color: #1a5490;
    margin-bottom: 15px;
}

.service-card-wide p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.btn-service {
    background: #1a5490;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #134072;
    transform: translateY(-2px);
}

.form-section-inline {
    padding: 80px 0;
    background: #ffffff;
}

.form-section-inline h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.content-block-asymmetric {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-columns-magazine {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.col-left-wide {
    flex: 2;
}

.col-left-wide h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.col-left-wide p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.col-right-narrow {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stats-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #5a6c7d;
}

.image-text-split {
    display: flex;
    background: #ffffff;
}

.split-image {
    flex: 1;
    background: #dfe6e9;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-text {
    flex: 1;
    padding: 80px 60px;
}

.split-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.split-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.disclaimer-text {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
    text-align: justify;
}

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px 0;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

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

.thanks-box {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-box h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-home:hover {
    background: #134072;
    transform: translateY(-2px);
}

.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image {
    flex: 1;
    background: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-page-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.services-intro h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

.info-item h3 {
    font-size: 1.3rem;
    color: #1a5490;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.legal-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 2rem;
    color: #1a5490;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 40px;
    color: #5a6c7d;
}

.legal-content ul li {
    margin-bottom: 12px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-main {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content-editorial h2 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .services-layout-magazine {
        flex-direction: column;
    }

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

    .content-columns-magazine {
        flex-direction: column;
    }

    .image-text-split {
        flex-direction: column;
    }

    .about-content,
    .contact-content {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
    }
}