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

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

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

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

.container-full {
    width: 100%;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.ad-notice {
    background-color: #333333;
    color: #cccccc;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: 0.3px;
}

.hero-magazine {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 30px;
}

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

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.intro-editorial {
    padding: 90px 0;
    background-color: #fafafa;
}

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

.column-main {
    flex: 2;
}

.column-sidebar {
    flex: 1;
}

.columns-magazine h2 {
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

.columns-magazine p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #3a3a3a;
}

.info-card {
    background-color: #ffffff;
    padding: 35px;
    border-left: 4px solid #1a1a1a;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 600;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.info-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.feature-split {
    padding: 0;
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    min-height: 600px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.split-content {
    flex: 1;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 26px;
    font-weight: 700;
    line-height: 1.3;
}

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

.cta-link {
    display: inline-block;
    margin-top: 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 2px;
    border-bottom: 2px solid #1a1a1a;
    transition: opacity 0.3s;
}

.cta-link:hover {
    opacity: 0.7;
}

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

.section-title {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.showcase-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
}

.showcase-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.showcase-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px 25px;
    font-weight: 600;
}

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

.service-preview {
    padding: 90px 0;
    background-color: #ffffff;
}

.editorial-block h2 {
    font-size: 40px;
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.editorial-block p {
    font-size: 18px;
    margin-bottom: 22px;
    line-height: 1.8;
}

.cta-inline {
    margin-top: 35px;
}

.btn-primary {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

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

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.testimonial-flow {
    padding: 80px 0;
    background-color: #2a2a2a;
    color: #ffffff;
}

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

.testimonial-magazine blockquote {
    flex: 1;
    padding: 40px;
    border-left: 3px solid #ffffff;
}

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

.testimonial-magazine cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.content-deep {
    padding: 90px 0;
    background-color: #ffffff;
}

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

.column-text-wide {
    flex: 2;
}

.column-image-narrow {
    flex: 1;
    background-color: #e0e0e0;
}

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

.columns-asymmetric h2 {
    font-size: 38px;
    margin-bottom: 26px;
    font-weight: 700;
    line-height: 1.3;
}

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

.form-section {
    padding: 90px 0;
    background-color: #f8f8f8;
}

.form-wrapper {
    background-color: #ffffff;
    padding: 50px;
    border-top: 4px solid #1a1a1a;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-wrapper > p {
    margin-bottom: 35px;
    font-size: 17px;
    color: #4a4a4a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #d0d0d0;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

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

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    background-color: #2a2a2a;
    padding: 25px;
    margin-bottom: 30px;
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #333333;
    font-size: 14px;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 25px;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

.btn-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

.page-header {
    padding: 80px 0 50px 0;
    background-color: #f5f5f5;
    text-align: center;
}

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

.page-header .lead {
    font-size: 20px;
    color: #4a4a4a;
}

.about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.info-box {
    background-color: #f5f5f5;
    padding: 30px;
    border-left: 4px solid #1a1a1a;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.expertise-section {
    padding: 0;
    background-color: #fafafa;
}

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

.values-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    flex: 1;
    padding: 40px 30px;
    background-color: #f8f8f8;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.approach-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.approach-list {
    list-style: none;
    margin-top: 30px;
}

.approach-list li {
    padding: 18px 0;
    font-size: 17px;
    line-height: 1.7;
    border-bottom: 1px solid #e0e0e0;
}

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

.approach-list li strong {
    color: #1a1a1a;
}

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

.cta-box {
    text-align: center;
    padding: 60px 40px;
    background-color: #f5f5f5;
    border-top: 4px solid #1a1a1a;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 18px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.services-intro {
    padding: 50px 0;
    background-color: #ffffff;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-text p {
    font-size: 19px;
    line-height: 1.8;
    color: #3a3a3a;
}

.services-list {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-item {
    display: flex;
    margin-bottom: 80px;
    min-height: 500px;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content-left,
.service-content-right {
    flex: 1.2;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #fafafa;
}

.service-image-right,
.service-image-left {
    flex: 1;
    background-color: #e0e0e0;
}

.service-image-right img,
.service-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-text h2 {
    font-size: 34px;
    margin-bottom: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.service-text p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
    color: #3a3a3a;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 22px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.service-price {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #d0d0d0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-size: 16px;
    color: #4a4a4a;
    font-weight: 600;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-note {
    font-size: 15px;
    color: #6a6a6a;
}

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

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

.contact-details {
    flex: 1;
}

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

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
}

.email-text {
    color: #4a4a4a;
}

.contact-note {
    padding: 60px 0;
    background-color: #fafafa;
}

.note-box {
    background-color: #ffffff;
    padding: 40px;
    border-left: 4px solid #1a1a1a;
}

.note-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.note-box p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: #ffffff;
    text-align: center;
}

.thanks-box h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.service-confirmation {
    margin: 25px 0;
    padding: 20px;
    background-color: #f5f5f5;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
}

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

.next-steps {
    padding: 60px 0;
    background-color: #fafafa;
}

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.steps-list {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-page {
    padding: 60px 0 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
    color: #2a2a2a;
}

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

.legal-section ul {
    margin: 15px 0 15px 25px;
    list-style: disc;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.text-muted {
    color: #6a6a6a;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 15px;
    color: #3a3a3a;
}

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

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

    .testimonial-magazine {
        flex-direction: column;
    }

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

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

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

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

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

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

    .steps-list {
        flex-direction: column;
    }
}

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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