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

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

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

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

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

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

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

.hero-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

.hero-text-large {
    flex: 1;
}

.hero-text-large h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-image-block {
    flex: 1;
    background-color: #f5f5f5;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s;
}

.cta-primary:hover {
    background-color: #34495e;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2c3e50;
    transition: all 0.2s;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.intro-multi-column {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

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

.column-layout-three {
    display: flex;
    gap: 48px;
}

.intro-column {
    flex: 1;
}

.intro-column h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.editorial-block {
    padding: 80px 40px;
}

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

.editorial-grid {
    display: flex;
    gap: 60px;
}

.editorial-main {
    flex: 2.5;
}

.editorial-main h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.2;
}

.editorial-main > p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 48px;
}

.service-showcase {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card-magazine {
    display: flex;
    gap: 32px;
    border-top: 1px solid #e2e8f0;
    padding-top: 32px;
}

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

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

.service-info {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 14px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: #34495e;
}

.editorial-sidebar {
    flex: 1;
}

.sidebar-block {
    background-color: #f8f9fa;
    padding: 32px;
    margin-bottom: 32px;
}

.sidebar-block h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.benefit-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: #4a5568;
}

.benefit-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 20px;
}

.testimonial-compact {
    border-left: 4px solid #3498db;
    background-color: #ffffff;
}

.quote-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 12px;
}

.quote-author {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

.full-width-feature {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.feature-background-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.75);
}

.feature-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 80px 40px;
}

.feature-overlay-content h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.feature-overlay-content p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.6;
}

.process-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.section-title-centered {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.process-step {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-top: 4px solid #3498db;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.form-section-magazine {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e2e8f0;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.submit-btn {
    padding: 16px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-start;
}

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

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

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #3498db;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    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: 24px;
}

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

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

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

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

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

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

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

.page-hero-compact {
    background-color: #f8f9fa;
    padding: 80px 40px 60px;
}

.page-hero-compact h1 {
    font-size: 56px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.6;
}

.about-story {
    padding: 80px 40px;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.story-text-main {
    flex: 1.5;
}

.story-text-main h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.story-image-block {
    flex: 1;
    background-color: #f5f5f5;
}

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

.values-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.section-title-left {
    font-size: 42px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1 1 calc(50% - 16px);
    background-color: #ffffff;
    padding: 40px;
    border-left: 4px solid #3498db;
}

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

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

.team-section-alternate {
    padding: 80px 40px;
}

.team-section-alternate h2 {
    font-size: 42px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.team-layout-offset {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.team-member-card {
    background-color: #f8f9fa;
    padding: 40px;
    max-width: 700px;
}

.team-member-card:nth-child(even) {
    margin-left: auto;
}

.member-info h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.member-role {
    font-size: 16px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.approach-section {
    background-color: #ffffff;
    padding: 80px 40px;
}

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

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.approach-visual {
    flex: 1;
    background-color: #f5f5f5;
}

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

.cta-full-width-dark {
    background-color: #2c3e50;
    padding: 80px 40px;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 20px;
    color: #cbd5e0;
    margin-bottom: 32px;
}

.cta-light {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s;
}

.cta-light:hover {
    background-color: #f8f9fa;
}

.services-detailed {
    padding: 60px 40px;
}

.service-item-detailed {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e2e8f0;
}

.service-item-detailed:last-child {
    border-bottom: none;
}

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-description {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 32px;
}

.service-includes {
    margin-bottom: 32px;
}

.service-includes h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: #4a5568;
}

.service-includes ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-pricing {
    margin-bottom: 24px;
    padding: 24px;
    background-color: #f8f9fa;
}

.price-main {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #6c757d;
}

.pricing-notes {
    background-color: #f8f9fa;
    padding: 60px 40px;
}

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

.container-narrow h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.contact-content {
    padding: 60px 40px;
}

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

.contact-info-main {
    flex: 1.5;
}

.contact-info-main h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-main > p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-detail-block {
    margin-bottom: 32px;
}

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

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

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.note-small {
    font-size: 14px;
    color: #6c757d;
    margin-top: 8px;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 32px;
    background-color: #f5f5f5;
}

.contact-notes {
    background-color: #f8f9fa;
    padding: 32px;
}

.contact-notes h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-notes p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
}

.contact-notes ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 12px;
}

.contact-notes ul li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    color: #4a5568;
}

.contact-notes ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
}

.visit-info {
    background-color: #f8f9fa;
    padding: 60px 40px;
}

.thanks-content {
    padding: 100px 40px;
    min-height: 500px;
}

.container-narrow-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-message h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-lead {
    font-size: 22px;
    color: #4a5568;
    margin-bottom: 48px;
}

.confirmation-details {
    text-align: left;
    background-color: #f8f9fa;
    padding: 40px;
    margin-bottom: 40px;
}

.confirmation-details p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.next-steps ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s;
}

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

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

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.legal-content {
    padding: 60px 40px;
    background-color: #ffffff;
}

.legal-intro {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 24px;
    color: #2c3e50;
}

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

.legal-section ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

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

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

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

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-content-split,
    .editorial-grid,
    .story-layout,
    .approach-split,
    .contact-layout-split,
    .service-item-detailed {
        flex-direction: column;
    }

    .column-layout-three,
    .process-grid {
        flex-direction: column;
    }

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

    .hero-text-large h1 {
        font-size: 40px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 16px;
    }

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

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

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