/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Header */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.brand a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #546e7a;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2c3e50;
}

.ad-label {
    font-size: 0.8rem;
    color: #999;
    background-color: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Magazine Layout */
.hero-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-grid {
    display: flex;
    gap: 1.5rem;
}

.hero-main {
    flex: 2;
    position: relative;
    background-color: #f8f9fa;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: white;
    padding: 3rem 2.5rem;
}

.hero-overlay h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-overlay p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.featured-card {
    position: relative;
    background-color: #f8f9fa;
}

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

.featured-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
    color: white;
    padding: 2rem 1.5rem 1rem;
    font-size: 1.3rem;
}

.featured-card p {
    position: absolute;
    bottom: 0.8rem;
    left: 1.5rem;
    right: 1.5rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

/* Intro Section */
.intro-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.intro-columns {
    display: flex;
    gap: 3rem;
}

.intro-col-wide {
    flex: 2.5;
}

.intro-col-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-col-wide p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #455a64;
    line-height: 1.8;
}

.intro-col-narrow {
    flex: 1;
}

.info-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #2c3e50;
}

.info-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-box ul {
    list-style: disc;
    padding-left: 1.2rem;
}

.info-box li {
    margin-bottom: 0.7rem;
    color: #546e7a;
}

/* Services Preview */
.services-preview {
    background-color: #fafafa;
    padding: 5rem 2rem;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #607d8b;
}

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

.service-card {
    background-color: white;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.service-card.large {
    flex: 1 1 calc(66.666% - 2rem);
}

.service-card.featured-large {
    flex: 1 1 100%;
    flex-direction: row;
}

.service-card.featured-large .card-image {
    flex: 1;
}

.service-card.featured-large .card-content {
    flex: 1;
}

.card-image {
    background-color: #f0f0f0;
}

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

.service-card.large .card-image img,
.service-card.featured-large .card-image img {
    height: 350px;
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.card-content p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background-color: #2c3e50;
    color: white;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    margin-top: auto;
}

.btn-select-service:hover {
    background-color: #1a252f;
    transform: scale(1.02);
}

/* Approach Section */
.approach-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.approach-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.approach-text {
    flex: 1.5;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-text p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

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

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

/* Benefits Section */
.benefits-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background-color: #2c3e50;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    background-color: white;
    color: #2c3e50;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Footer */
.main-footer {
    background-color: #1a252f;
    color: #b0bec5;
    padding: 4rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-column li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: #b0bec5;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

.cookie-content a {
    color: #81c784;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-accept {
    background-color: #4caf50;
    color: white;
}

.btn-accept:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

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

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

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1a252f;
    transform: scale(1.02);
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3a4f63 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Services Detailed */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

.service-detail.highlight {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

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

.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
}

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

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-detail-content h4 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.8rem;
    color: #546e7a;
    line-height: 1.6;
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3a4f63 100%);
    color: white;
    padding: 5rem 2rem;
}

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

.about-intro h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-intro p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.story-layout {
    display: flex;
    gap: 4rem;
}

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

.story-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.story-content {
    flex: 1.5;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.values-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.approach-detail {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.approach-columns {
    display: flex;
    gap: 4rem;
}

.approach-text-col {
    flex: 1.5;
}

.approach-text-col h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-text-col h4 {
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
    color: #2c3e50;
}

.approach-text-col p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

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

.approach-visual-col img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.team-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.team-section h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3a4f63 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #2c3e50;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: #546e7a;
    line-height: 1.6;
}

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

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

.additional-info {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.info-card {
    flex: 1;
    background-color: white;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-card p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-content {
    background-color: #f8f9fa;
    padding: 4rem 3rem;
    border-radius: 8px;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.3rem;
    color: #4caf50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.thanks-details {
    margin-bottom: 2.5rem;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

#serviceConfirmation {
    font-weight: 600;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #2c3e50;
    color: white;
}

.btn-primary:hover {
    background-color: #1a252f;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: white;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: white;
    transform: scale(1.05);
}

.next-steps {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 2.5rem;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2c3e50;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step-card p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-content {
    background-color: white;
    padding: 3rem;
    border-radius: 4px;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.last-updated {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.6rem;
    color: #546e7a;
    line-height: 1.6;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content a {
    color: #2c3e50;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #1a252f;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .magazine-grid {
        gap: 1.5rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 1.5rem);
    }

    .service-card.large,
    .service-card.featured-large {
        flex: 1 1 100%;
    }

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

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

    .hero-sidebar {
        flex-direction: row;
    }

    .intro-columns,
    .approach-layout,
    .story-layout,
    .approach-columns,
    .contact-layout {
        flex-direction: column;
    }

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

    .steps-grid,
    .info-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

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

    .intro-col-wide h2,
    .section-header-center h2,
    .approach-text h2,
    .benefits-section h2,
    .values-section h2,
    .team-section h2,
    .story-content h2,
    .approach-text-col h2,
    .contact-info h2 {
        font-size: 2rem;
    }

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

    .hero-sidebar {
        flex-direction: column;
    }

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

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

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

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

    .page-hero h1,
    .about-intro h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 2.5rem;
    }
}