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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2d8ba8;
    --accent-color: #57c4e5;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #d32f2f;
    --success-color: #388e3c;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.header-magazine {
    border-bottom: 3px solid var(--primary-color);
    background-color: var(--bg-white);
}

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

.brand-mark {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-horizontal a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-horizontal a:hover {
    color: var(--primary-color);
}

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

.hero-editorial {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 60px;
}

.hero-content-offset {
    padding: 50px 30px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-editorial h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: normal;
}

.lead-text {
    font-size: 22px;
    color: var(--text-medium);
    line-height: 1.6;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8f4f8;
}

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

.intro-columns {
    display: flex;
    gap: 50px;
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.column-left {
    flex: 1;
}

.column-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

.column-left p {
    margin-bottom: 20px;
}

.column-right-visual {
    flex: 1;
    background-color: #f5f9fa;
}

.column-right-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 20px;
}

.citation-note {
    padding: 25px;
}

.citation-note p {
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-medium);
}

.citation-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.services-preview-cards {
    padding: 70px 30px;
    background-color: var(--bg-light);
}

.section-heading-centered {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: normal;
}

.card-grid-magazine {
    display: flex;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    max-width: 380px;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8f4f8;
}

.service-card h3 {
    padding: 20px 25px 10px;
    font-size: 24px;
    color: var(--text-dark);
    font-weight: normal;
}

.service-card p {
    padding: 0 25px 15px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-medium);
}

.price-tag {
    display: block;
    padding: 15px 25px 20px;
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.trust-section-asymmetric {
    display: flex;
    gap: 60px;
    padding: 70px 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.trust-content {
    flex: 2;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

.trust-content p {
    margin-bottom: 20px;
}

.trust-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.cta-inline {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: var(--primary-color);
}

.trust-visual {
    flex: 1;
    background-color: #f5f9fa;
}

.trust-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.form-section-embedded {
    padding: 70px 30px;
    background-color: #f0f7f9;
}

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

.form-container-magazine h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: normal;
}

.form-container-magazine > p {
    margin-bottom: 30px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-medium);
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    padding: 15px 40px;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: var(--primary-color);
}

.disclaimer-section {
    padding: 50px 30px;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffa000;
    padding: 25px 30px;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.disclaimer-box p {
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.footer-magazine {
    background-color: #1a2a3a;
    color: #d0d8e0;
    padding: 50px 30px 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--bg-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.footer-col p {
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #d0d8e0;
    text-decoration: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid #2a3a4a;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--bg-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references li {
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    margin-bottom: 8px;
}

.footer-references a {
    color: #a0c8d8;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2a3a4a;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: var(--bg-white);
    padding: 20px 30px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-cookie-accept {
    background-color: var(--success-color);
    color: var(--bg-white);
}

.btn-cookie-reject {
    background-color: #555;
    color: var(--bg-white);
}

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.85;
}

.about-hero {
    padding: 60px 30px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: normal;
}

.about-hero img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #e8f4f8;
}

.about-story-columns {
    display: flex;
    gap: 50px;
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-main {
    flex: 2;
}

.story-main h2 {
    font-size: 34px;
    margin-bottom: 18px;
    margin-top: 30px;
    color: var(--primary-color);
    font-weight: normal;
}

.story-main h2:first-child {
    margin-top: 0;
}

.story-main p {
    margin-bottom: 18px;
}

.story-sidebar {
    flex: 1;
}

.sidebar-box {
    background-color: #f5f9fa;
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.principles-list {
    list-style: none;
    padding-left: 0;
}

.principles-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
}

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

.story-sidebar img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8f4f8;
}

.team-section {
    padding: 60px 30px;
    background-color: var(--bg-light);
}

.team-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
    font-weight: normal;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 18px;
}

.expertise-grid {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.expertise-item {
    flex: 1;
    min-width: 220px;
    background-color: var(--bg-white);
    padding: 25px;
    border-left: 3px solid var(--secondary-color);
}

.expertise-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.expertise-item p {
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-medium);
}

.values-visual {
    display: flex;
    gap: 50px;
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

.values-text p {
    margin-bottom: 18px;
}

.values-image {
    flex: 1;
    background-color: #f5f9fa;
}

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

.cta-section-about {
    padding: 70px 30px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.cta-section-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: normal;
}

.cta-section-about p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.services-intro {
    padding: 60px 30px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

.services-lead {
    font-size: 20px;
    color: var(--text-medium);
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px;
}

.service-full {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    align-items: flex-start;
}

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

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-content-left h2,
.service-content-right h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: normal;
}

.service-content-left p,
.service-content-right p {
    margin-bottom: 16px;
}

.service-content-left a,
.service-content-right a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.service-features h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-features ul {
    padding-left: 25px;
}

.service-features li {
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
}

.service-pricing {
    margin-top: 25px;
    padding: 20px;
    background-color: #f0f7f9;
    border-left: 4px solid var(--secondary-color);
}

.price-large {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    margin-bottom: 5px;
}

.price-description {
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-medium);
}

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

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

.services-cta {
    padding: 60px 30px;
    background-color: var(--bg-light);
    text-align: center;
}

.services-cta h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: normal;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro {
    padding: 60px 30px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

.contact-intro p {
    font-size: 18px;
    color: var(--text-medium);
}

.contact-split {
    display: flex;
    gap: 60px;
    padding: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
}

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

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.info-item p {
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-medium);
    line-height: 1.6;
}

.info-note {
    background-color: #f0f7f9;
    padding: 20px;
    margin-top: 30px;
}

.info-note p {
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
}

.contact-visual {
    flex: 1;
    background-color: #f5f9fa;
}

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

.location-section {
    padding: 50px 30px;
    max-width: 900px;
    margin: 0 auto;
}

.location-section h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: normal;
}

.location-section p {
    margin-bottom: 16px;
}

.thanks-section {
    padding: 80px 30px;
    max-width: 900px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: normal;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-medium);
}

.thanks-details {
    background-color: #e8f5e9;
    padding: 20px 25px;
    margin: 25px 0;
    border-left: 4px solid var(--success-color);
}

.next-steps {
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: normal;
}

.steps-list {
    padding-left: 30px;
}

.steps-list li {
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.thanks-cta {
    margin-top: 50px;
    text-align: center;
}

.thanks-cta p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: normal;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: normal;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .intro-columns,
    .trust-section-asymmetric,
    .about-story-columns,
    .values-visual,
    .service-full,
    .contact-split {
        flex-direction: column;
    }

    .service-full.reverse {
        flex-direction: column;
    }

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

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

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

    .nav-horizontal {
        flex-direction: column;
        gap: 15px;
    }
}