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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #2d5f9f;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.header-top {
    background-color: #f0f0f0;
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f9f;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:hover {
    color: #2d5f9f;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2d5f9f;
    transition: width 0.3s;
}

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

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 50px;
    right: 50px;
    color: #ffffff;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.intro-section {
    padding: 60px 30px;
}

.magazine-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.featured-column {
    flex: 2;
    font-size: 18px;
    line-height: 1.8;
}

.featured-column h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.featured-column p {
    margin-bottom: 20px;
}

.sidebar-highlight {
    flex: 1;
    background-color: #f5f5f5;
    padding: 30px;
    border-left: 4px solid #2d5f9f;
}

.sidebar-highlight img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}

.sidebar-highlight h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5f9f;
}

.methodology-list {
    list-style: none;
    padding-left: 0;
}

.methodology-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.methodology-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2d5f9f;
    font-weight: 700;
}

.services-preview {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

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

.section-header-magazine p {
    font-size: 20px;
    color: #666;
    font-style: italic;
}

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

.service-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 50px;
}

.service-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d5f9f;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 25px 0;
}

.cta-service {
    padding: 14px 32px;
    background-color: #2d5f9f;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.cta-service:hover {
    background-color: #1f4470;
    transform: translateY(-2px);
}

.cta-service.selected {
    background-color: #1a8754;
}

.contact-form-section {
    padding: 80px 30px;
    background-color: #f9f9f9;
}

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

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

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

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

.economic-form {
    background-color: #ffffff;
    padding: 50px;
    border-left: 5px solid #2d5f9f;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: #2d5f9f;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.trust-indicators {
    padding: 60px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.trust-block {
    flex: 1;
}

.trust-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.trust-block p {
    font-size: 15px;
    line-height: 1.7;
}

.visual-break {
    margin: 60px 0;
}

.visual-break-content {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #2c2c2c;
}

.visual-break-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.about-preview {
    padding: 80px 30px;
}

.split-content-magazine {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
}

.link-underline {
    display: inline-block;
    color: #2d5f9f;
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 3px;
    border-bottom: 2px solid #2d5f9f;
    transition: all 0.3s;
    margin-top: 15px;
}

.link-underline:hover {
    color: #1f4470;
    border-bottom-color: #1f4470;
}

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

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

.disclaimer-section {
    padding: 50px 30px;
    background-color: #f0f0f0;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2d5f9f;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #bbb;
}

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

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

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

.footer-column ul li a:hover {
    color: #2d5f9f;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #ffffff;
    text-align: center;
    border-top: 5px solid #1a8754;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a8754;
}

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

.thanks-container .service-selected {
    font-size: 20px;
    font-weight: 700;
    color: #2d5f9f;
    margin: 30px 0;
}

.btn-home {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d5f9f;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 30px;
}

.btn-home:hover {
    background-color: #1f4470;
}

.page-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px;
    background-color: #ffffff;
}

.page-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2d5f9f;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-container ul,
.page-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-container li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.contact-page {
    padding: 60px 30px;
}

.contact-info-grid {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2d5f9f;
}

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

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

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #f0f0f0;
}

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

@media (max-width: 1024px) {
    .magazine-grid,
    .magazine-grid-alt,
    .split-content-magazine,
    .contact-info-grid {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column !important;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

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

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

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

    .hero-overlay {
        left: 20px;
        right: 20px;
        bottom: 40px;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

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