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

:root {
    --primary-color: #2D5F5D;
    --secondary-color: #D4A574;
    --dark-color: #1A1A1A;
    --light-color: #F8F6F3;
    --text-color: #333333;
    --gray-color: #666666;
    --white: #FFFFFF;
    --accent-color: #8B7355;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

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

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-menu {
    display: none;
    gap: 40px;
}

.nav-menu li a {
    font-size: 1rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-top: 80px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    background-color: var(--light-color);
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: var(--gray-color);
}

.hero-right {
    flex: 1;
    min-height: 400px;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.intro-split {
    display: flex;
    flex-direction: column;
}

.split-image {
    flex: 1;
    min-height: 400px;
}

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

.split-content {
    flex: 1;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.split-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-color);
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 15px;
    display: inline-block;
}

.link-arrow:hover {
    color: var(--accent-color);
}

.value-cards {
    padding: 80px 20px;
    background-color: var(--white);
}

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

.value-card {
    padding: 40px 30px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-color);
}

.services-preview {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-left {
    flex: 1;
}

.services-left h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.services-left > p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--gray-color);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.service-item {
    padding: 30px;
    background-color: var(--white);
    border-left: 4px solid var(--secondary-color);
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--gray-color);
}

.price {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.services-right {
    flex: 1;
    min-height: 400px;
}

.services-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.testimonial-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    background-color: var(--primary-color);
}

.testimonial-content blockquote {
    max-width: 600px;
}

.testimonial-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--white);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    min-height: 400px;
}

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

.process-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.process-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.process-step {
    padding: 35px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-color);
}

.cta-split {
    display: flex;
    flex-direction: column;
}

.cta-left {
    flex: 1;
    min-height: 400px;
}

.cta-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-right {
    flex: 1;
    padding: 60px 30px;
    background-color: var(--light-color);
}

.cta-right h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-right > p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: var(--gray-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.stats-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--white);
}

.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--white);
}

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

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section ul li a {
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    display: inline-block;
    padding: 16px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    padding: 25px 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-cookie-accept:hover {
    background-color: #234a48;
}

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

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

.page-hero-split {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    min-height: 60vh;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 30px;
    background-color: var(--primary-color);
}

.hero-content-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image-right {
    flex: 1;
    min-height: 350px;
}

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

.about-content-split {
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
}

.content-left {
    flex: 1;
    padding: 30px;
}

.content-left h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.content-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-color);
}

.content-right {
    flex: 1;
    min-height: 400px;
}

.content-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: var(--dark-color);
}

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

.value-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-icon {
    flex: 1;
    min-height: 250px;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.value-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-text h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-color);
}

.team-split {
    padding: 80px 20px;
    background-color: var(--white);
}

.team-intro {
    text-align: center;
    margin-bottom: 60px;
}

.team-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

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

.team-member {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.member-image {
    flex: 1;
    min-height: 300px;
}

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

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.member-role {
    display: block;
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.member-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-color);
}

.approach-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.approach-left {
    flex: 1;
    min-height: 400px;
}

.approach-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.approach-right {
    flex: 1;
    padding: 40px 20px;
}

.approach-right h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.approach-right > p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.approach-list {
    list-style: none;
    margin-bottom: 35px;
}

.approach-list li {
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: var(--gray-color);
}

.approach-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.mission-split {
    display: flex;
    flex-direction: column;
}

.mission-content {
    flex: 1;
    padding: 60px 30px;
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--white);
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.mission-image {
    flex: 1;
    min-height: 400px;
}

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

.services-intro {
    padding: 60px 20px;
    background-color: var(--white);
}

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

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-color);
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
    background-color: var(--light-color);
}

.service-detail-split.reverse {
    background-color: var(--white);
}

.service-content {
    flex: 1;
    padding: 30px;
}

.service-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 10px;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--gray-color);
}

.service-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--white);
    border-left: 4px solid var(--primary-color);
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-color);
}

.service-pricing .price {
    font-size: 2rem;
}

.service-image {
    flex: 1;
    min-height: 400px;
}

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

.service-form-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
}

.form-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-intro {
    flex: 1;
    color: var(--white);
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.95;
}

.form-container {
    flex: 1;
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
}

.contact-split-section {
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
}

.contact-info-side {
    flex: 1;
    padding: 40px 30px;
    background-color: var(--light-color);
}

.contact-info-side h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

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

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-color);
}

.info-block a {
    color: var(--primary-color);
}

.info-block a:hover {
    color: var(--accent-color);
}

.info-note {
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(45, 95, 93, 0.05);
    border-left: 3px solid var(--primary-color);
}

.info-note p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-color);
}

.contact-map-side {
    flex: 1;
    min-height: 400px;
}

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

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

.contact-cta-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.faq-split {
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
    gap: 40px;
}

.faq-intro {
    flex: 1;
}

.faq-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.faq-intro p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

.faq-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-color);
}

.thanks-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    background-color: var(--light-color);
    text-align: center;
}

.thanks-container {
    max-width: 700px;
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--gray-color);
}

.thanks-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-color);
}

.next-steps-split {
    padding: 80px 20px;
    background-color: var(--white);
}

.steps-intro {
    text-align: center;
    margin-bottom: 50px;
}

.steps-intro h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
}

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

.step-card {
    padding: 35px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.step-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-color);
}

.resources-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.resources-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.resources-left {
    flex: 1;
}

.resources-left h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.resources-left p {
    font-size: 1.05rem;
    color: var(--gray-color);
}

.resources-right {
    flex: 1;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resources-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    padding-left: 35px;
    position: relative;
    color: var(--gray-color);
}

.resources-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.explore-more {
    padding: 80px 20px;
    background-color: var(--white);
}

.explore-more h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.explore-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.explore-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.explore-content {
    padding: 30px;
    background-color: var(--white);
}

.explore-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.explore-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-color);
}

.legal-page {
    padding: 120px 20px 80px;
    background-color: var(--white);
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.last-updated {
    font-size: 0.95rem;
    color: var(--gray-color);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--gray-color);
}

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

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--gray-color);
    list-style-type: disc;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent-color);
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .hamburger {
        display: none;
    }

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

    .intro-split {
        flex-direction: row;
    }

    .intro-split.reverse {
        flex-direction: row-reverse;
    }

    .card-grid {
        flex-direction: row;
    }

    .split-layout {
        flex-direction: row;
    }

    .testimonial-split {
        flex-direction: row;
    }

    .process-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 20px);
    }

    .cta-split {
        flex-direction: row;
    }

    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .page-hero-split {
        flex-direction: row;
    }

    .about-content-split {
        flex-direction: row;
        gap: 60px;
    }

    .value-block.reverse {
        flex-direction: row-reverse;
    }

    .value-block {
        flex-direction: row;
        align-items: center;
    }

    .team-member {
        flex-direction: row;
    }

    .mission-split {
        flex-direction: row;
    }

    .service-detail-split {
        flex-direction: row;
        gap: 60px;
    }

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

    .form-split {
        flex-direction: row;
        align-items: center;
    }

    .contact-split-section {
        flex-direction: row;
    }

    .faq-split {
        flex-direction: row;
    }

    .steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-card {
        flex: 1 1 calc(50% - 15px);
    }

    .resources-split {
        flex-direction: row;
    }

    .explore-grid {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        max-width: 70%;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .split-content h2 {
        font-size: 2.5rem;
    }

    .value-card h3 {
        font-size: 1.7rem;
    }

    .services-left h2 {
        font-size: 2.5rem;
    }

    .process-section h2 {
        font-size: 2.5rem;
    }

    .hero-content-left h1 {
        font-size: 3rem;
    }

    .content-left h2 {
        font-size: 2.5rem;
    }

    .service-content h2 {
        font-size: 2.3rem;
    }

    .form-intro h2 {
        font-size: 2.3rem;
    }

    .process-grid {
        flex-wrap: nowrap;
    }

    .process-step {
        flex: 1;
    }

    .steps-grid {
        flex-wrap: nowrap;
    }

    .step-card {
        flex: 1;
    }
}