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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.header-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

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

.hero-magazine {
    margin-bottom: 80px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
    padding: 60px 40px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
}

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

.intro-editorial h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-editorial p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.services-magazine-grid {
    padding: 80px 0;
}

.magazine-columns {
    display: flex;
    gap: 50px;
}

.column-main {
    flex: 2.5;
}

.column-sidebar {
    flex: 1;
}

.column-main h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.column-main > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #6c757d;
}

.service-block {
    margin-bottom: 60px;
}

.service-block img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    border-radius: 4px;
    object-fit: cover;
}

.service-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 15px;
}

.price-tag {
    display: inline-block;
    background-color: #e3f2fd;
    color: #1565c0;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
}

.sticky-info-card {
    position: sticky;
    top: 100px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    border-left: 4px solid #2c5282;
}

.sticky-info-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #495057;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: 700;
}

.cta-inline {
    display: inline-block;
    background-color: #2c5282;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #1e3a5f;
}

.services-continuation {
    margin-top: 60px;
}

.service-card-horizontal {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

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

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

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

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.approach-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.approach-section h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.approach-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f1f3f5;
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

.contact-form-section > div > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #6c757d;
}

.contact-form {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    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: #2c5282;
}

.form-row {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: #2c5282;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #1e3a5f;
}

.footer-magazine {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-columns {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

.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-disclaimer {
    background-color: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #adb5bd;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

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

.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: 14px;
    color: #495057;
}

.cookie-content a {
    color: #2c5282;
    text-decoration: underline;
}

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

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

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

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

.btn-reject {
    background-color: #e9ecef;
    color: #495057;
}

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

.page-hero-small {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.page-hero-small p {
    font-size: 18px;
    color: #6c757d;
}

.about-content {
    padding: 70px 0;
}

.split-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #495057;
    line-height: 1.8;
}

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

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

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

.team-philosophy h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-philosophy p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #495057;
    line-height: 1.8;
}

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

.value-item {
    flex: 0 0 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.expertise-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.expertise-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.expertise-section p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #495057;
    line-height: 1.8;
}

.services-detailed {
    padding: 70px 0;
}

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

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

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

.service-detail-content h2 {
    font-size: 30px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

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

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #495057;
}

.price-display {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.service-cta {
    padding: 70px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.service-cta h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #6c757d;
}

.contact-info-section {
    padding: 70px 0;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

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

.contact-note {
    background-color: #fff3cd;
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    color: #856404;
}

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

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.approach-contact {
    padding: 70px 0;
    background-color: #f8f9fa;
}

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

.approach-contact p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #495057;
    line-height: 1.8;
}

.thanks-section {
    padding: 80px 0;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #495057;
}

.thanks-service-confirmation {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.thanks-service-confirmation p {
    font-size: 16px;
    color: #1565c0;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    font-size: 16px;
    margin-bottom: 15px;
    color: #495057;
    line-height: 1.7;
}

.thanks-cta {
    margin-top: 40px;
}

.legal-page {
    padding: 70px 0;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #495057;
}

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

.legal-page ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #495057;
    line-height: 1.7;
}

.legal-page em {
    color: #6c757d;
}

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

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

    .split-content,
    .contact-layout {
        flex-direction: column;
    }

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

    .value-item {
        flex: 0 0 100%;
    }

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

    .footer-columns {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 calc(50% - 25px);
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

    .hero-overlay p {
        font-size: 16px;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-col {
        flex: 0 0 100%;
    }
}