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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #1a1a1a;
    line-height: 1.7;
    background-color: #fefefe;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1 1 60%;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.ad-disclosure span {
    font-size: 12px;
    color: #666;
    font-family: Arial, sans-serif;
}

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

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

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    letter-spacing: 1px;
}

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

.nav-magazine a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-magazine a:hover {
    color: #2c5f2d;
}

.nav-magazine a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2c5f2d;
    transition: width 0.3s ease;
}

.nav-magazine a:hover::after {
    width: 100%;
}

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

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 60px;
    color: #ffffff;
    max-width: 700px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    opacity: 0.95;
}

.intro-columns {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    background-color: #f9f9f9;
}

.column-main {
    flex: 2;
}

.column-main h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.column-main p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.column-sidebar {
    flex: 1;
}

.info-box {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 30px;
    border-left: 5px solid #1e4620;
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

.feature-split {
    display: flex;
    padding: 80px 60px;
    gap: 70px;
    align-items: center;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.feature-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #444;
}

.inline-link {
    color: #2c5f2d;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #1e4620;
}

.feature-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.testimonial-inline {
    padding: 60px 120px;
    background-color: #1a1a1a;
}

.testimonial-inline blockquote {
    color: #ffffff;
    font-size: 26px;
    font-style: italic;
    line-height: 1.6;
    text-align: center;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    font-style: normal;
    color: #cccccc;
}

.grid-editorial {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.section-header-full h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-full p {
    font-size: 20px;
    color: #666;
    font-style: italic;
}

.service-card {
    display: flex;
    margin-bottom: 50px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-details {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 20px 0;
}

.btn-select {
    padding: 15px 30px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #1e4620;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 60px;
    background-color: #f0f4f0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border: 2px solid #2c5f2d;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ccc;
    background-color: #fafafa;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
    background-color: #ffffff;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e4620;
    transform: translateY(-2px);
}

.trust-elements {
    display: flex;
    padding: 70px 60px;
    gap: 50px;
    background-color: #ffffff;
}

.trust-column {
    flex: 1;
    padding: 30px;
    border-left: 4px solid #2c5f2d;
}

.trust-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.trust-column p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.final-narrative {
    padding: 90px 150px;
    background-color: #f5f5f5;
}

.narrative-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.narrative-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.8;
}

.footer-magazine {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 0;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 60px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 60px;
    text-align: center;
}

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

.page-hero-small {
    padding: 80px 60px 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.about-narrative {
    padding: 80px 60px;
}

.narrative-columns {
    display: flex;
    gap: 60px;
}

.narrative-main {
    flex: 2.5;
}

.narrative-main h2 {
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a1a1a;
}

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

.narrative-main p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.7;
}

.narrative-main img {
    width: 100%;
    margin: 40px 0;
}

.narrative-sidebar {
    flex: 1;
}

.sidebar-box {
    background-color: #f9f9f9;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.sidebar-box h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.sidebar-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

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

.approach-list li {
    font-size: 15px;
    color: #555;
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
}

.approach-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-size: 20px;
}

.team-section {
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    font-style: italic;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.team-member {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.team-member:nth-child(even) {
    flex-direction: row-reverse;
}

.member-image {
    flex: 1;
    background-color: #d0d0d0;
}

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

.member-info {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

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

.values-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.values-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 35px;
    background-color: #f9f9f9;
    border-left: 5px solid #2c5f2d;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.heritage-impact {
    padding: 80px 120px;
    background-color: #2c5f2d;
    color: #ffffff;
}

.heritage-impact h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.heritage-impact p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-detail {
    display: flex;
    margin-bottom: 70px;
    gap: 50px;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.service-meta span {
    font-size: 14px;
    color: #666;
    background-color: #f0f0f0;
    padding: 8px 16px;
    border-radius: 3px;
}

.service-detail-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-includes {
    margin: 30px 0;
}

.service-includes h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.service-includes ul li {
    font-size: 15px;
    color: #555;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f2d;
}

.booking-info {
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.booking-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.info-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.info-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.info-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

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

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

.contact-main {
    flex: 2;
}

.contact-main h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-main p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 50px;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.note {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.directions-section {
    margin-top: 50px;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #2c5f2d;
}

.directions-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.directions-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-sidebar {
    flex: 1;
}

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

.info-list li {
    font-size: 15px;
    color: #555;
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
}

.info-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c5f2d;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.btn-sidebar {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sidebar:hover {
    background-color: #1e4620;
}

.map-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.map-overlay p {
    font-size: 18px;
    margin: 0;
}

.additional-info {
    padding: 80px 60px;
    background-color: #ffffff;
}

.additional-info h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.info-columns {
    display: flex;
    gap: 50px;
}

.info-col {
    flex: 1;
}

.info-col h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #2c5f2d;
}

.info-col p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border: 2px solid #2c5f2d;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.confirmation-details {
    text-align: left;
    margin-bottom: 40px;
}

.confirmation-box {
    background-color: #f0f4f0;
    padding: 25px;
    border-left: 4px solid #2c5f2d;
}

.confirmation-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.confirmation-box p {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
}

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

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #2c5f2d;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.steps-list li strong {
    display: block;
    font-size: 17px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.preparation-tips {
    text-align: left;
    background-color: #f9f9f9;
    padding: 25px;
    margin-bottom: 40px;
}

.preparation-tips h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.preparation-tips ul {
    list-style: none;
}

.preparation-tips ul li {
    font-size: 15px;
    color: #555;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.preparation-tips ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-size: 20px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2c5f2d;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

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

.contact-note {
    font-size: 14px;
    color: #888;
}

.related-content {
    padding: 80px 60px;
    background-color: #ffffff;
}

.related-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.related-item {
    flex: 1;
    background-color: #f9f9f9;
}

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

.related-item h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #1a1a1a;
}

.related-item p {
    font-size: 15px;
    color: #555;
    margin: 0 20px 20px;
    line-height: 1.6;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 16px;
    color: #888;
    margin-bottom: 50px;
}

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

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

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #1a1a1a;
}

.legal-section p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-section ul li {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-section a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #1e4620;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-magazine {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-overlay {
        left: 20px;
        right: 20px;
        bottom: 40px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .intro-columns,
    .feature-split,
    .narrative-columns,
    .contact-grid,
    .info-columns {
        flex-direction: column;
    }

    .trust-elements,
    .related-grid {
        flex-direction: column;
    }

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

    .service-card:nth-child(even),
    .service-detail:nth-child(even),
    .team-member:nth-child(even) {
        flex-direction: column;
    }

    .final-narrative {
        padding: 60px 30px;
    }

    .testimonial-inline {
        padding: 40px 30px;
    }
}