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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background: #ecf0f1;
    border-radius: 4px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #e67e22;
}

.hero {
    margin-bottom: 60px;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 0;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.7));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 22px;
    color: #ecf0f1;
    max-width: 650px;
}

.intro-cards {
    padding: 80px 0;
    background: #ffffff;
}

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

.recipe-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 240px;
    overflow: hidden;
}

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

.card-body {
    padding: 30px;
}

.card-body h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-body p {
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.7;
}

.philosophy {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.text-column {
    flex: 1;
    min-width: 300px;
}

.text-column h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.text-column p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
}

.text-link {
    display: inline-block;
    margin-top: 15px;
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.text-link:hover {
    color: #d35400;
    border-bottom-color: #d35400;
}

.image-column {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

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

.services-preview {
    padding: 80px 0;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid #ecf0f1;
    transition: border-color 0.3s, transform 0.3s;
    text-align: center;
}

.service-card:hover {
    border-color: #e67e22;
    transform: translateY(-5px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
    margin: 20px 0;
}

.btn-service {
    background: #e67e22;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-service:hover {
    background: #d35400;
    transform: scale(1.05);
}

.cta-center {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: #e67e22;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    background: #34495e;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #2c3e50;
}

.approach {
    padding: 80px 0;
    background: #ffffff;
}

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

.approach-text {
    flex: 1;
    min-width: 300px;
}

.approach-text h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #e67e22;
    min-width: 60px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

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

.form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-section.hidden {
    display: none;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.selected-service-display {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.price-display {
    display: block;
    margin-top: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #e67e22;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-cancel {
    background: #95a5a6;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 10px;
    transition: background 0.3s;
}

.btn-cancel:hover {
    background: #7f8c8d;
}

footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-col ul a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-accept {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-reject:hover {
    background: #7f8c8d;
}

.page-hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

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

.page-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-story {
    padding: 80px 0;
    background: #ffffff;
}

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

.story-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

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

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.values {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.expertise {
    padding: 80px 0;
    background: #ffffff;
}

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

.expertise-text {
    flex: 1;
    min-width: 300px;
}

.expertise-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.expertise-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.expertise-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
}

.expertise-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

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

.approach-detail {
    padding: 80px 0;
    background: #ffffff;
}

.approach-detail h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.approach-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
}

.approach-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-box {
    background: linear-gradient(135deg, #e67e22, #d35400);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
}

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

.cta-box p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #fef5e7;
}

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

.services-detailed {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-full {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    align-items: center;
    flex-wrap: wrap;
}

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

.service-content {
    flex: 1;
    min-width: 300px;
    padding: 50px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 32px;
    color: #2c3e50;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
    background: #fef5e7;
    padding: 10px 20px;
    border-radius: 8px;
}

.service-body h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-body p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-body ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.service-body ul li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

.service-body em {
    font-size: 15px;
    color: #7f8c8d;
    display: block;
    margin-top: 15px;
}

.service-image {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    overflow: hidden;
}

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

.testimonials {
    padding: 80px 0;
    background: #ffffff;
}

.testimonials h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #e67e22;
}

.testimonial-card p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.contact-content {
    padding: 80px 0;
    background: #ffffff;
}

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

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.info-note {
    background: #fef5e7;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
    margin-top: 30px;
}

.info-note p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.visit-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.visit-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.visit-text {
    flex: 1;
    min-width: 300px;
}

.visit-text p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.visit-directions {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
}

.visit-directions h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.visit-directions p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-hero {
    background: linear-gradient(135deg, #27ae60, #229954);
    padding: 100px 0;
    text-align: center;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #27ae60;
    margin: 0 auto 30px;
}

.thanks-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.thanks-hero p {
    font-size: 20px;
    color: #d5f4e6;
}

.thanks-details {
    padding: 80px 0;
    background: #ffffff;
}

.details-box {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.details-box h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #e67e22;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-text p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-info {
    background: #fef5e7;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info .service-name {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-info .service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e67e22;
}

.additional-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.additional-info h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.info-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-link {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.card-link:hover {
    color: #d35400;
    border-bottom-color: #d35400;
}

.legal-page {
    padding: 80px 0;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-date {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #34495e;
}

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

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

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

.legal-content a {
    color: #e67e22;
    text-decoration: none;
    border-bottom: 1px solid #e67e22;
}

.legal-content a:hover {
    color: #d35400;
    border-bottom-color: #d35400;
}

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

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

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

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

    .card-grid,
    .services-grid,
    .values-grid,
    .approach-content,
    .testimonial-grid,
    .info-cards,
    .faq-grid {
        flex-direction: column;
    }

    .content-split,
    .story-layout,
    .expertise-layout,
    .approach-layout,
    .contact-layout,
    .visit-content {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions button {
        flex: 1;
    }
}