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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2d5986;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
}

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

h1, h2, h3, h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.magazine-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    background: var(--bg-light);
}

.ad-disclosure {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    font-family: sans-serif;
}

.main-nav {
    display: flex;
    gap: 2rem;
    font-family: sans-serif;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.main-nav a.active {
    color: var(--accent-color);
}

.masthead {
    padding: 2rem 5%;
    text-align: center;
}

.brand-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.magazine-layout {
    padding: 3rem 0;
}

.hero-editorial {
    position: relative;
    margin-bottom: 4rem;
    height: 600px;
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
}

.hero-overlay h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 1.3rem;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.magazine-grid {
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 5%;
}

.feature-column {
    flex: 2;
}

.feature-column h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-column p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.inline-image {
    margin: 2rem 0;
    background-color: var(--bg-light);
}

.inline-image img {
    width: 100%;
}

.sidebar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-box {
    background: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
}

.insight-box h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-highlight {
    background: var(--primary-color);
    color: white;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    font-family: sans-serif;
}

.stat-label {
    font-size: 1rem;
    line-height: 1.4;
}

.services-showcase {
    background: var(--bg-light);
    padding: 4rem 5%;
    margin: 4rem 0;
}

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

.section-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 400px;
    background: var(--bg-white);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card img {
    width: 100%;
    height: 250px;
    background-color: var(--bg-light);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: sans-serif;
    margin-bottom: 1.5rem;
}

.btn-select {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: sans-serif;
}

.btn-select:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.form-section {
    max-width: 700px;
    margin: 4rem auto;
    padding: 0 5%;
}

.form-container {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.form-container h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: sans-serif;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 600;
}

.btn-submit {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: sans-serif;
}

.btn-submit:hover {
    background: #d35400;
}

.testimonials-editorial {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 5%;
}

.testimonials-editorial h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    background: var(--bg-light);
    padding: 2.5rem;
    border-left: 5px solid var(--accent-color);
    font-size: 1.15rem;
    font-style: italic;
}

.testimonial p {
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    font-style: normal;
    color: var(--primary-color);
    font-family: sans-serif;
}

.about-preview {
    background: var(--bg-white);
    padding: 4rem 5%;
}

.about-content-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    font-family: sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.link-arrow:after {
    content: ' →';
}

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

.about-image img {
    width: 100%;
}

.disclaimer-section {
    background: #fff9e6;
    padding: 3rem 5%;
    margin: 3rem 0;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-box h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.disclaimer-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.magazine-footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 5% 1rem;
    margin-top: 4rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-family: sans-serif;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    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: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: sans-serif;
}

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

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

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--bg-light);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.thanks-details p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: sans-serif;
    transition: opacity 0.3s ease;
    display: inline-block;
}

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

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

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

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

.about-page,
.services-page,
.contact-page {
    padding: 2rem 0;
}

.about-hero {
    position: relative;
    height: 500px;
    margin-bottom: 4rem;
    overflow: hidden;
    background-color: var(--bg-light);
}

.about-hero img {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.about-hero-text {
    position: absolute;
    bottom: 3rem;
    left: 5%;
    color: white;
    max-width: 600px;
}

.about-hero-text h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.about-hero-text p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.about-story {
    padding: 4rem 5%;
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.story-main {
    flex: 2;
}

.story-main h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.story-main p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.story-sidebar {
    flex: 1;
}

.highlight-box {
    background: var(--accent-color);
    color: white;
    padding: 2rem;
    border-radius: 4px;
}

.highlight-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.methodology-section,
.team-section,
.values-section {
    padding: 4rem 5%;
    background: var(--bg-light);
    margin: 2rem 0;
}

.methodology-section h2,
.team-section h2,
.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.methodology-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: var(--bg-white);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.method-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: var(--bg-white);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.values-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

.value-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cta-about {
    padding: 4rem 5%;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-intro {
    text-align: center;
    padding: 2rem 5% 3rem;
}

.services-intro h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

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

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

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

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

.service-visual img {
    width: 100%;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-description p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-description h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
}

.service-description ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-description li {
    margin-bottom: 0.7rem;
}

.service-pricing-detail {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: sans-serif;
}

.price-note {
    color: var(--text-light);
    font-size: 1rem;
}

.btn-select-service {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: sans-serif;
}

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

.services-custom {
    background: var(--bg-light);
    padding: 4rem 5%;
    margin: 4rem 0;
}

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

.custom-box h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.custom-box p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-contact {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: sans-serif;
    transition: background 0.3s ease;
}

.btn-contact:hover {
    background: #d35400;
}

.contact-intro {
    text-align: center;
    padding: 2rem 5% 3rem;
}

.contact-intro h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.contact-layout {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 5%;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.email-text {
    color: var(--text-dark);
    font-weight: 600;
}

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

.contact-visual img {
    width: 100%;
    margin-bottom: 1.5rem;
}

.location-note {
    padding: 1.5rem;
    background: var(--bg-light);
}

.location-note h3 {
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.contact-faq {
    background: var(--bg-light);
    padding: 4rem 5%;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: var(--bg-white);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-cta {
    padding: 4rem 5%;
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 8px;
}

.cta-box h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.legal-page h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.7rem;
}

.legal-section h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.7rem;
}

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

    .about-content-split {
        flex-direction: column;
    }

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

    .story-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 2rem;
    }

    .hero-overlay h2 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

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

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

    .service-card {
        min-width: 100%;
    }

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

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

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

    .methodology-grid,
    .values-columns,
    .faq-grid {
        flex-direction: column;
    }

    .method-card,
    .value-item,
    .faq-item {
        min-width: 100%;
    }

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