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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-editorial {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.hero-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.hero-text-column h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a2332;
}

.hero-lead {
    font-size: 20px;
    color: #495057;
    line-height: 1.7;
}

.hero-image-column {
    flex: 1;
    background-color: #e9ecef;
}

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

.intro-text-wide {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.intro-graf {
    font-size: 22px;
    line-height: 1.8;
    color: #495057;
    text-align: center;
}

.services-magazine {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.magazine-header {
    text-align: center;
    margin-bottom: 60px;
}

.magazine-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a2332;
}

.magazine-header p {
    font-size: 18px;
    color: #6c757d;
}

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

.service-card-mag {
    background-color: #ffffff;
    display: flex;
    gap: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card-mag.primary-card {
    flex-direction: column;
}

.service-card-mag.secondary-card {
    padding: 30px;
    flex-direction: column;
}

.card-image {
    flex: 1;
    background-color: #e9ecef;
}

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

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

.card-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a2332;
}

.card-content p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2c7a2f;
    margin: 20px 0;
}

.btn-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
}

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

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a2332;
}

.form-intro p {
    font-size: 18px;
    color: #6c757d;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #495057;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 15px;
    border: 1px solid #ced4da;
    font-size: 16px;
    background-color: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background-color: #2c7a2f;
    color: #ffffff;
    padding: 15px 32px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.why-section-offset {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.offset-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.offset-text {
    flex: 1.2;
}

.offset-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a2332;
}

.offset-text p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.offset-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.disclaimer-section {
    padding: 50px 20px;
    background-color: #fff3cd;
}

.disclaimer-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #1a2332;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-magazine {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    color: #adb5bd;
}

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

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

.footer-col ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #adb5bd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #343a40;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    font-size: 15px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #28a745;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #218838;
}

.btn-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5a6268;
}

.page-header {
    background-color: #1a2332;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: #adb5bd;
}

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

.about-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-intro-section {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.about-text-main {
    flex: 1.5;
}

.about-text-main h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2332;
}

.about-text-main p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image-side {
    flex: 1;
    background-color: #e9ecef;
}

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

.mission-vision-block {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.mission-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 35px;
}

.mission-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a2332;
}

.mission-card p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.values-section {
    margin-bottom: 60px;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a2332;
}

.values-columns {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a2332;
}

.value-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

.team-approach {
    margin-bottom: 60px;
}

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

.team-text p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-methodology {
    background-color: #f8f9fa;
    padding: 40px;
    margin-bottom: 60px;
}

.approach-methodology h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a2332;
}

.approach-methodology p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-about {
    text-align: center;
    padding: 40px 0;
}

.cta-about p {
    font-size: 22px;
    margin-bottom: 20px;
    color: #495057;
}

.btn-secondary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2980b9;
}

.services-detailed {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

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

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

.service-price-large {
    font-size: 38px;
    font-weight: 700;
    color: #2c7a2f;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7a2f;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.contact-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.contact-info-block {
    display: flex;
    gap: 50px;
}

.contact-text {
    flex: 1.3;
}

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

.contact-text p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a2332;
}

.contact-data {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 25px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
}

.contact-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.thanks-section {
    padding: 120px 20px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a2332;
}

.thanks-message {
    font-size: 20px;
    color: #495057;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-confirmation {
    font-size: 18px;
    color: #2c7a2f;
    margin-bottom: 25px;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 18px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.legal-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a2332;
}

.legal-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #1a2332;
}

.legal-content h4 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: #1a2332;
}

.legal-content p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.legal-content ul li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 10px;
    line-height: 1.6;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-content-split {
        flex-direction: column;
        gap: 30px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .service-card-mag {
        flex-direction: column;
    }

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

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

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

    .mission-vision-block {
        flex-direction: column;
    }

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

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

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

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