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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7f;
    --accent-color: #d4a574;
    --text-dark: #1f1f1f;
    --text-light: #5a5a5a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

.ad-disclosure {
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

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

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

.logo-area {
    flex: 1;
}

.site-logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.tagline {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    font-family: 'Georgia', serif;
}

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

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

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

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

.hero-main {
    flex: 2;
    position: relative;
    background-color: var(--bg-light);
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 40px 30px;
    color: var(--bg-white);
}

.hero-overlay h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-overlay p {
    font-size: 18px;
    opacity: 0.95;
}

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: var(--accent-color);
    padding: 30px;
    color: var(--bg-white);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

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

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

.narrow-column {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid-magazine {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-large {
    display: flex;
    gap: 40px;
    align-items: stretch;
    border-top: 3px solid var(--primary-color);
    padding-top: 40px;
}

.service-image {
    flex: 1;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 12px 28px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section-inline {
    background-color: var(--bg-light);
    padding: 80px 40px;
    margin: 80px 0;
}

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

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

.form-intro h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    font-size: 16px;
    font-family: 'Georgia', serif;
    background-color: var(--bg-white);
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 15px 40px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.trust-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.trust-text {
    flex: 1.2;
}

.trust-text h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.trust-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.testimonials-inline {
    background-color: var(--primary-color);
    padding: 80px 40px;
    margin: 80px 0;
}

.testimonial {
    background-color: rgba(255,255,255,0.1);
    padding: 40px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--bg-white);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    font-style: normal;
}

.cta-offset {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
}

.cta-box {
    max-width: 500px;
    background-color: var(--accent-color);
    padding: 50px;
    color: var(--bg-white);
}

.cta-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 14px 32px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--bg-light);
}

.footer-magazine {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    font-style: italic;
}

.copyright {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 58, 82, 0.97);
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    color: var(--bg-white);
    font-size: 15px;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.btn-cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

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

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

.hero-content-narrow h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-story {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

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

.main-content-wide {
    flex: 2;
}

.main-content-wide h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.main-content-wide p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sidebar-content {
    flex: 1;
}

.stats-box {
    background-color: var(--bg-light);
    padding: 40px 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 8px;
}

.methodology-section {
    background-color: var(--bg-light);
    padding: 80px 40px;
    margin: 80px 0;
}

.intro-paragraph {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-top: 20px;
}

.methodology-grid {
    max-width: 1400px;
    margin: 50px auto 0;
    display: flex;
    gap: 40px;
}

.method-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-top: 4px solid var(--accent-color);
}

.method-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.method-card p {
    font-size: 16px;
    line-height: 1.7;
}

.team-philosophy {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.image-block {
    flex: 1;
    background-color: var(--bg-light);
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.text-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-compact {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.values-compact h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.values-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.values-list li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.values-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 28px;
    line-height: 1;
}

.cta-simple {
    background-color: var(--primary-color);
    padding: 80px 40px;
    margin: 80px 0;
}

.cta-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.cta-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-centered p {
    font-size: 18px;
    margin-bottom: 35px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

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

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

.hero-text-centered h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text-centered p {
    font-size: 20px;
    color: var(--text-light);
}

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

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: flex-start;
}

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

.service-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.service-info {
    flex: 1.2;
}

.service-info h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-info h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

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

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.pricing-box {
    background-color: var(--bg-light);
    padding: 30px;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 30px;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
}

.form-section-services {
    background-color: var(--bg-light);
    padding: 80px 40px;
    margin: 80px 0;
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.form-wrapper p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

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

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

.btn-form-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 15px 40px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

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

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

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

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

.contact-content {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

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

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

.contact-info-block h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-note {
    background-color: var(--bg-light);
    padding: 25px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.additional-info {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.info-card-contact {
    flex: 1;
    background-color: var(--bg-light);
    padding: 35px 30px;
}

.info-card-contact h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card-contact p {
    font-size: 16px;
    line-height: 1.7;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.thanks-info {
    background-color: var(--bg-light);
    padding: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.thanks-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.next-steps h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.step-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 35px 30px;
    text-align: left;
}

.step-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-next-step {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 25px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-next-step:hover {
    background-color: var(--secondary-color);
}

.legal-page {
    max-width: 1000px;
    margin: 60px auto 80px;
    padding: 0 40px;
}

.legal-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .hero-grid,
    .trust-grid,
    .content-asymmetric,
    .methodology-grid,
    .split-layout,
    .contact-layout,
    .info-grid,
    .steps-grid,
    .form-columns {
        flex-direction: column;
    }

    .service-card-large,
    .service-detail-card {
        flex-direction: column;
    }

    .cta-offset {
        justify-content: center;
    }

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

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

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

    .hero-overlay h2 {
        font-size: 28px;
    }

    .hero-content-narrow h1,
    .thanks-content h1 {
        font-size: 34px;
    }

    .section-header-center h2 {
        font-size: 30px;
    }

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