* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #5dade2;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #95a5a6;
    border-left: 1px solid #34495e;
    padding-left: 2rem;
}

.hero-magazine {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 5rem 2rem;
    color: #ffffff;
}

.hero-overlay {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text-block {
    flex: 1.2;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #ecf0f1;
    font-weight: 300;
}

.hero-image-block {
    flex: 1;
    background-color: #34495e;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-columns {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.three-column-layout {
    display: flex;
    gap: 3rem;
}

.column-main {
    flex: 2.5;
}

.column-main h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
    font-weight: 700;
}

.column-main p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.column-sidebar {
    flex: 1;
}

.info-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

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

.expertise-list li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.expertise-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.section-title-offset {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
    font-weight: 700;
    padding-left: 0.5rem;
    border-left: 6px solid #3498db;
}

.services-grid-magazine {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.service-card-large {
    flex: 1.8;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.service-image {
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.2rem;
}

.cta-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.service-card-compact {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-card-compact h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card-compact p {
    flex-grow: 1;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.cta-link-center {
    text-align: center;
    margin-top: 2rem;
}

.link-arrow {
    font-size: 1.1rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #2980b9;
}

.content-block-asymmetric {
    padding: 5rem 2rem;
    background: linear-gradient(to right, #ecf0f1 0%, #ffffff 100%);
}

.asymmetric-layout {
    display: flex;
    gap: 3.5rem;
}

.content-left-heavy {
    flex: 2.2;
}

.content-left-heavy h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
    font-weight: 700;
}

.content-left-heavy p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.quote-block {
    margin-top: 2rem;
    padding: 1.8rem;
    background-color: #ffffff;
    border-left: 5px solid #f39c12;
    font-size: 1.2rem;
    font-style: italic;
    color: #34495e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.content-right-light {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.testimonials-editorial {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.container-narrow h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a2332;
    font-weight: 700;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a2332;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.05rem;
    color: #7f8c8d;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #dfe6e9;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #5d6d7e;
    text-align: center;
}

.main-footer {
    background-color: #1a2332;
    color: #ecf0f1;
    padding: 3.5rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #bdc3c7;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #5dade2;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #5dade2;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

.btn-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.2rem;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.thanks-container .btn-home:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a2332;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #34495e;
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    line-height: 1.8;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
}

.contact-page {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a2332;
    font-weight: 700;
    text-align: center;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-info p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.contact-info strong {
    color: #2c3e50;
    font-weight: 600;
}

.contact-map {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

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

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

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

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