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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    background-color: #34495e;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ecf0f1;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-magazine {
    position: relative;
    height: 75vh;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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 {
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

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

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

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

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

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

.column-main {
    flex: 2;
}

.column-side {
    flex: 1;
}

.column-wide {
    flex: 3;
}

.column-narrow-side {
    flex: 1;
}

.intro-editorial {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.intro-editorial h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-editorial p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.side-card {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.side-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 25px 15px 25px;
    color: #2c3e50;
}

.side-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 25px 25px 25px;
    color: #4a5568;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 600px;
}

.split-left {
    flex: 1;
    background-color: #34495e;
}

.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 600px;
}

.split-right {
    flex: 1;
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.split-right h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.split-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #2980b9;
}

.grid-showcase {
    padding: 100px 0;
    background-color: #ffffff;
}

.grid-showcase h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

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

.grid-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background-color: #ecf0f1;
}

.grid-item.large {
    flex: 1 1 100%;
}

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

.grid-caption {
    padding: 30px;
    background-color: #ffffff;
}

.grid-caption h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.grid-caption p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.testimonial-section {
    padding: 80px 0;
    background-color: #2c3e50;
}

.testimonial-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background-color: #34495e;
    border-radius: 4px;
    color: #ecf0f1;
}

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

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #95a5a6;
}

.form-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.main-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

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

.closing-editorial {
    padding: 100px 0;
    background-color: #ffffff;
}

.closing-editorial h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.closing-editorial p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

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

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.15);
    padding: 25px 20px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #7f8c8d;
}

.page-header {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #95a5a6;
}

.services-intro {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.services-grid {
    padding: 80px 0 100px 0;
    background-color: #ffffff;
}

.service-cards-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    flex: 1 1 100%;
    display: flex;
    flex-direction: row;
}

.service-card.featured .service-image {
    flex: 1;
}

.service-card.featured .service-content {
    flex: 1;
}

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

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

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.service-features li {
    font-size: 15px;
    color: #4a5568;
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #3498db;
    font-weight: 700;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #3498db;
    margin-top: 25px;
}

.services-cta {
    padding: 80px 0;
    background-color: #34495e;
    text-align: center;
}

.services-cta h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 18px;
    color: #95a5a6;
    margin-bottom: 35px;
}

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

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

.about-intro {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.about-intro h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-intro p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.about-intro img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.philosophy-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.philosophy-grid {
    display: flex;
    gap: 50px;
}

.philosophy-item {
    flex: 1;
}

.philosophy-item h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.approach-section {
    padding: 100px 0;
    background-color: #ecf0f1;
}

.approach-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.approach-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.approach-image {
    flex: 1;
    background-color: #34495e;
}

.approach-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.values-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

.values-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
    padding-left: 32px;
    position: relative;
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.commitment-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.commitment-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.commitment-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-main {
    flex: 2;
}

.contact-main h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-sidebar {
    flex: 1;
}

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

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

.legal-notice {
    padding: 80px 0 100px 0;
    background-color: #f8f9fa;
}

.legal-notice h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    margin-top: 50px;
    color: #2c3e50;
}

.legal-notice h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    margin-top: 30px;
    color: #34495e;
}

.legal-notice p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.thanks-content a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.thanks-content a:hover {
    text-decoration: underline;
}

.btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.thanks-image {
    margin-top: 60px;
    text-align: center;
}

.thanks-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.legal-content {
    padding: 80px 0 100px 0;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 50px;
    color: #2c3e50;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    margin-top: 35px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

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

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

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .container-magazine {
        flex-direction: column;
        gap: 40px;
    }

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

    .split-left,
    .split-right {
        width: 100%;
    }

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

    .philosophy-grid {
        flex-direction: column;
        gap: 40px;
    }

    .approach-layout {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
        gap: 50px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .testimonial-grid {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 15px;
    }

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

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

    .intro-editorial h2 {
        font-size: 32px;
    }

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