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

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

.navbar {
    background-color: #1a1a2e;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f39c12;
    letter-spacing: 1px;
}

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

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

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

.ad-notice {
    background-color: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a1a2e;
}

.hero-left h1 span {
    color: #f39c12;
    display: block;
    margin-top: 0.5rem;
}

.hero-left p {
    font-size: 1.25rem;
    color: #555;
    max-width: 550px;
}

.hero-right {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #f39c12;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 5rem;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.services-overview {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.services-header h2 {
    font-size: 2.8rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-card-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 4rem;
    gap: 4rem;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-details h3 {
    font-size: 2rem;
    color: #1a1a2e;
}

.service-details p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f39c12;
    margin: 1rem 0;
}

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

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

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 5rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-selected-display {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 600;
    display: none;
}

.service-selected-display.active {
    display: block;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    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: #f39c12;
}

.btn-submit {
    background-color: #f39c12;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

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

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 5rem;
    align-items: center;
}

.trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
}

.trust-content blockquote {
    border-left: 4px solid #f39c12;
    padding-left: 2rem;
    font-style: italic;
}

.trust-content blockquote p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.trust-content cite {
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.trust-visual {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer {
    background-color: #1a1a2e;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #f39c12;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(52, 73, 94, 0.3);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ecf0f1;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    transition: transform 0.4s ease;
}

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

.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-content a {
    color: #f39c12;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cookie-accept {
    background-color: #f39c12;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ecf0f1;
    border: 1px solid #ecf0f1;
}

.btn-cookie-reject:hover {
    background-color: rgba(236, 240, 241, 0.1);
    transform: translateY(-2px);
}

.page-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 5rem;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 3.2rem;
    color: #1a1a2e;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

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

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-info h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
}

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

.service-info p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.service-info ul {
    list-style-position: inside;
    color: #555;
}

.service-info ul li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    font-size: 1.05rem;
}

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

.price-label {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39c12;
}

.service-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-section-split {
    display: flex;
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem;
    background-color: #f39c12;
    border-radius: 12px;
    gap: 4rem;
    align-items: center;
}

.cta-content {
    flex: 1;
    color: #ffffff;
}

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

.cta-content p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.cta-action {
    flex: 0 0 auto;
}

.btn-cta-large {
    display: inline-block;
    background-color: #ffffff;
    color: #f39c12;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

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

.about-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-intro h1 {
    font-size: 3.2rem;
    color: #1a1a2e;
}

.about-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.about-hero-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 5rem;
    align-items: center;
}

.mission-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
}

.mission-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 5rem;
    align-items: flex-start;
}

.values-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.values-content h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #f39c12;
}

.value-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.values-visual {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.values-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 5rem;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-content h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
}

.approach-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 5rem;
    align-items: center;
}

.team-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-content h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
}

.team-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.team-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.difference-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.difference-section h2 {
    font-size: 2.8rem;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 4rem;
}

.difference-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.difference-item {
    flex: 0 0 calc(50% - 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.difference-item h3 {
    font-size: 1.5rem;
    color: #f39c12;
}

.difference-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 5rem;
    align-items: center;
}

.contact-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-intro h1 {
    font-size: 3.2rem;
    color: #1a1a2e;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.contact-hero-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 5rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-details h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    color: #f39c12;
}

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

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.note-text {
    font-size: 0.95rem;
    font-style: italic;
    color: #7f8c8d;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: rgba(26, 26, 46, 0.85);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 6px;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-approach-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 5rem;
    align-items: center;
}

.approach-visual {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-text h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
}

.approach-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.faq-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 5rem;
    align-items: flex-start;
}

.faq-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.faq-content h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #f39c12;
}

.faq-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.faq-visual {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.faq-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thanks-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 5rem;
    align-items: flex-start;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.thanks-content h1 {
    font-size: 3.2rem;
    color: #27ae60;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #2c3e50;
    line-height: 1.8;
}

.thanks-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-details h2 {
    font-size: 2rem;
    color: #1a1a2e;
}

.timeline-item {
    padding-left: 2rem;
    border-left: 3px solid #f39c12;
}

.timeline-item h3 {
    font-size: 1.4rem;
    color: #f39c12;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

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

.btn-primary {
    display: inline-block;
    background-color: #f39c12;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
    transform: translateY(-2px);
}

.thanks-visual {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thanks-info-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 5rem;
    align-items: center;
}

.info-visual {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.info-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-content h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
}

.info-list {
    list-style-position: inside;
    color: #555;
}

.info-list li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    font-size: 1.05rem;
}

.info-list a {
    color: #f39c12;
    text-decoration: underline;
}

.info-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-top: 1rem;
}

.legal-page {
    min-height: 70vh;
    padding: 4rem 2rem;
}

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

.legal-container h1 {
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

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

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

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

.legal-section h3 {
    font-size: 1.4rem;
    color: #f39c12;
    margin: 2rem 0 1rem;
}

.legal-section p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-section ul li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .trust-split,
    .page-hero-split,
    .service-detail-split,
    .about-hero-split,
    .mission-split,
    .values-split,
    .approach-split,
    .team-split,
    .contact-hero-split,
    .contact-info-split,
    .contact-approach-split,
    .faq-split,
    .thanks-hero-split,
    .thanks-info-split,
    .cta-section-split {
        flex-direction: column;
        gap: 3rem;
    }

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

    .difference-item {
        flex: 0 0 100%;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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