* {
    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-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    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: 1px solid #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e67e22;
}

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.5rem 1rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(230, 126, 34, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

.intro-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.philosophy-section {
    padding: 5rem 0;
    background-color: #ecf0f1;
}

.philosophy-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.philosophy-text {
    flex: 1;
}

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

.philosophy-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.philosophy-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #95a5a6;
}

.services-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header-center p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    padding: 0.5rem 1rem;
    background-color: #ecf0f1;
    color: #2c3e50;
    border-radius: 20px;
    font-size: 0.9rem;
}

.service-price {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #e67e22;
}

.price-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 0.25rem;
}

.btn-select {
    padding: 0.875rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.form-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.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.875rem;
    border: 1px solid #dcdde1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 5rem 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    gap: 3rem;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background-color: #e67e22;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.testimonials-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

.testimonial {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #e67e22;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: block;
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 600;
}

.cta-section {
    padding: 5rem 0;
    background-color: #ecf0f1;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

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

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

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

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem !important;
    line-height: 1.5;
    margin-top: 1rem !important;
}

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
}

.story-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.story-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

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

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

.values-image {
    flex: 1;
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #95a5a6;
}

.values-content {
    flex: 1;
}

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

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1.05rem;
    color: #34495e;
}

.team-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    gap: 3rem;
}

.team-member {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.member-info p {
    font-size: 1.05rem;
    color: #34495e;
}

.approach-section {
    padding: 5rem 0;
    background-color: #ecf0f1;
}

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

.approach-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.journey-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: #e67e22;
    min-width: 100px;
}

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

.timeline-content p {
    font-size: 1.05rem;
    color: #7f8c8d;
}

.commitment-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.commitment-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.cta-about {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ffffff;
    text-align: center;
}

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

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 6rem 0;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #95a5a6;
}

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

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

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c3e50;
}

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

.service-detail-content ul li {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.service-pricing-box {
    background-color: #ecf0f1;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 0.25rem;
}

.price-detail {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.service-benefits {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.service-benefits p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.service-form-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.service-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.service-form-section > .container-narrow > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.contact-info-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.contact-details {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    background-color: #ecf0f1;
    padding: 3rem;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-placeholder p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.visit-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.visit-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.faq-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1.05rem;
    color: #34495e;
}

.response-time {
    padding: 5rem 0;
    background-color: #ecf0f1;
}

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

.response-time p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.thanks-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
    font-weight: 700;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 6px;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.next-steps {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

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

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

.step-content p {
    font-size: 1.05rem;
    color: #34495e;
}

.meanwhile-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.meanwhile-section p {
    font-size: 1.15rem;
    color: #34495e;
    margin-bottom: 2rem;
}

.thanks-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.link-card {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    color: #e67e22;
}

.social-proof {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.testimonial-box {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.testimonial-box p {
    font-size: 1.2rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
}

.legal-page {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-page a {
    color: #e67e22;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #dcdde1;
}

.cookie-table th {
    background-color: #ecf0f1;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #34495e;
}

@media (max-width: 1024px) {
    .philosophy-grid,
    .values-layout,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

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

    .philosophy-image,
    .values-image,
    .service-detail-image {
        height: 400px;
    }

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ad-notice {
        flex-basis: 100%;
        text-align: center;
    }

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

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

    .faq-item {
        flex: 1 1 100%;
    }

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

img {
    object-fit: cover;
}
