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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

.cookie-banner.active {
    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-actions {
    display: flex;
    gap: 15px;
}

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

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

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 3px solid #2c3e50;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand h1 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    background-color: #fff3cd;
    padding: 8px 16px;
    border-radius: 4px;
}

.ad-label {
    font-size: 12px;
    color: #856404;
    font-weight: 600;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-magazine {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    padding: 40px;
    color: #ffffff;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    line-height: 1.5;
}

.magazine-intro {
    padding: 60px 40px;
    background-color: #ffffff;
}

.container-magazine {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.intro-main {
    flex: 2;
}

.intro-main h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-main p {
    margin-bottom: 20px;
    font-size: 18px;
}

.intro-sidebar {
    flex: 1;
}

.highlight-box {
    background-color: #ecf0f1;
    padding: 30px;
    border-left: 4px solid #3498db;
}

.highlight-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.highlight-box p {
    font-size: 16px;
    line-height: 1.6;
}

.services-preview {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.section-title-offset {
    font-size: 42px;
    margin-bottom: 50px;
    padding-left: 60px;
    color: #2c3e50;
}

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

.service-card-large {
    flex: 1 1 100%;
    background-color: #ffffff;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card-medium {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card-small {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card-large .service-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.service-card-large .service-content {
    flex: 1;
    padding: 50px;
}

.service-card-medium .service-image {
    height: 280px;
    background-color: #ecf0f1;
}

.service-card-medium .service-content {
    padding: 35px;
}

.service-content h4 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 25px;
    margin-bottom: 25px;
}

.service-select {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.form-section-magazine {
    padding: 80px 40px;
    background-color: #ffffff;
}

.form-column-left {
    flex: 1;
}

.form-column-left h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.form-column-left p {
    font-size: 18px;
    margin-bottom: 30px;
}

.form-benefits ul {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #ecf0f1;
}

.form-column-right {
    flex: 1;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 4px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.insights-section {
    padding: 80px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.insights-section h3 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.insights-layout {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.insight-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-block img {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #34495e;
}

.insight-text {
    flex: 1;
}

.insight-text h4 {
    font-size: 32px;
    margin-bottom: 20px;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

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

.testimonials-inline h3 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.testimonial-quote {
    margin-bottom: 40px;
    padding: 40px;
    background-color: #ffffff;
    border-left: 5px solid #3498db;
}

.testimonial-quote p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-quote cite {
    font-size: 16px;
    font-weight: 600;
    color: #7f8c8d;
    font-style: normal;
}

.cta-bottom {
    padding: 80px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

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

.cta-bottom h3 {
    font-size: 38px;
    margin-bottom: 25px;
}

.cta-bottom p {
    font-size: 20px;
    margin-bottom: 35px;
}

.btn-cta {
    display: inline-block;
    padding: 18px 45px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #229954;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

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

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

.page-hero {
    background-color: #2c3e50;
    padding: 80px 40px;
    text-align: center;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
}

.page-hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 22px;
}

.about-intro {
    padding: 80px 40px;
    background-color: #ffffff;
}

.about-text h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.team-section h3 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 27px);
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.member-image {
    width: 100%;
    height: 350px;
    background-color: #ecf0f1;
}

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

.member-info {
    padding: 30px;
}

.member-info h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.member-info p {
    font-size: 16px;
    line-height: 1.6;
}

.methodology-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.methodology-section h3 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.methodology-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.method-step {
    padding: 35px;
    background-color: #f8f9fa;
    border-left: 5px solid #3498db;
}

.method-step h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.method-step p {
    font-size: 17px;
    line-height: 1.7;
}

.values-section {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

.values-left {
    flex: 1;
}

.values-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #bdc3c7;
}

.values-right {
    flex: 1;
}

.values-right h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.values-list li {
    padding: 20px 0;
    font-size: 17px;
    line-height: 1.7;
    border-bottom: 1px solid #bdc3c7;
}

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

.services-detail {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

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

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

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

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

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-info-block p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #555555;
}

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

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

.contact-additional {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.contact-additional h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-additional p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.thanks-content {
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.thanks-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-confirmation {
    font-weight: 700;
    color: #2c3e50;
    font-size: 20px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

.legal-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-intro {
    font-size: 19px;
    margin-bottom: 40px;
    color: #555555;
    line-height: 1.7;
}

.legal-section h3 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-section h4 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-section p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-section ul {
    margin: 20px 0 20px 30px;
}

.legal-section li {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-date {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #ecf0f1;
    font-style: italic;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .page-hero-content h2 {
        font-size: 36px;
    }

    .page-hero-content p {
        font-size: 18px;
    }

    .container-magazine {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

    .insight-block {
        flex-direction: column;
    }

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

    .thanks-content {
        padding: 40px 20px;
    }

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