* {
    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;
}

.nav-split {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C5F2D;
    text-decoration: none;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

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

.nav-menu li a:hover {
    color: #2C5F2D;
}

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

.hero-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2C5F2D;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #2C5F2D;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #2C5F2D;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

.intro-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.services-preview {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.section-header {
    max-width: 1400px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #546e7a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto 3rem auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    font-size: 1.5rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem 1rem 1.5rem;
    color: #546e7a;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C5F2D;
}

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

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.trust-list {
    list-style: none;
    margin-top: 1.5rem;
}

.trust-list li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    color: #546e7a;
    font-size: 1.05rem;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2C5F2D;
    font-weight: bold;
    font-size: 1.2rem;
}

.trust-visual {
    flex: 1;
    background-color: #f5f5f5;
}

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

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

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.approach-split {
    display: flex;
    gap: 4rem;
}

.approach-left,
.approach-right {
    flex: 1;
}

.approach-left h3,
.approach-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2C5F2D;
}

.approach-left p,
.approach-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

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

.cta-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-text p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

.cta-form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem 2rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #2C5F2D;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border-left: 4px solid #2C5F2D;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-accept {
    padding: 0.7rem 1.5rem;
    background-color: #2C5F2D;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-reject {
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.cookie-link {
    color: #ffffff;
    font-size: 0.9rem;
    text-decoration: underline;
}

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

.hero-text-full h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text-full p {
    font-size: 1.3rem;
    color: #ecf0f1;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

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

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

.philosophy-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.philosophy-text {
    flex: 1;
}

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

.philosophy-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.value-item p {
    color: #546e7a;
    line-height: 1.7;
}

.approach-detail-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.approach-detail-split h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.approach-detail-split p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.approach-text-left,
.approach-text-right {
    flex: 1;
}

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

.experience-visual {
    flex: 1;
    background-color: #f5f5f5;
}

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

.experience-content {
    flex: 1;
}

.experience-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.experience-content p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.commitment-container {
    max-width: 1400px;
    margin: 0 auto;
}

.commitment-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.commitment-split-content {
    display: flex;
    gap: 4rem;
}

.commitment-left,
.commitment-right {
    flex: 1;
}

.commitment-left p,
.commitment-right p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.cta-about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

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

.cta-content-center h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content-center p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

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

.services-intro-text {
    flex: 1;
}

.services-intro-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-intro-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.services-intro-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

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

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

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

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

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

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

.service-detail-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    color: #546e7a;
    font-size: 1.05rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2C5F2D;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-pricing {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2C5F2D;
}

.price-label {
    font-size: 0.9rem;
    color: #546e7a;
    display: block;
    margin-bottom: 0.3rem;
}

.price-amount {
    font-size: 2rem;
    color: #2C5F2D;
    font-weight: 700;
    display: block;
}

.price-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    display: block;
    margin-top: 0.3rem;
}

.service-cta-section {
    background-color: #2c3e50;
    padding: 5rem 2rem;
}

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

.service-cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-cta-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.inquiry-form-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.inquiry-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.inquiry-text {
    flex: 1;
}

.inquiry-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.inquiry-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.inquiry-form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-form .form-group {
    margin-bottom: 1.5rem;
}

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

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info-side p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-details {
    margin: 2rem 0;
}

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

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

.contact-item p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 0.3rem;
}

.contact-item p.note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2C5F2D;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: #546e7a;
    margin-bottom: 0;
}

.contact-form-side {
    flex: 1;
}

.form-container-contact {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.form-container-contact h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-container-contact p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.contact-page-form .form-group {
    margin-bottom: 1.5rem;
}

.form-privacy {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.form-privacy a {
    color: #2C5F2D;
}

.location-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
}

.location-container h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.location-container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.location-detail {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.location-detail h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.location-detail p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.8;
}

.faq-contact-section {
    padding: 5rem 2rem;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.faq-item {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 2rem;
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.thanks-content {
    flex: 2;
}

.thanks-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-reference {
    font-weight: 600;
    color: #2C5F2D;
}

.next-steps {
    margin-bottom: 2rem;
}

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

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

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #546e7a;
}

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

.thanks-actions {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thanks-sidebar {
    flex: 1;
}

.info-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.info-box h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.info-box p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-email {
    font-weight: 600;
    color: #2C5F2D;
    margin-top: 0.5rem;
}

.info-links {
    list-style: none;
    margin-top: 1rem;
}

.info-links li {
    margin-bottom: 0.5rem;
}

.info-links li a {
    color: #2C5F2D;
    text-decoration: none;
    font-weight: 600;
}

.info-links li a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 5rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #2C5F2D;
    text-decoration: underline;
}

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

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

.cookie-table thead th {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
}

.cookie-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    color: #546e7a;
}

@media (max-width: 768px) {
    .hero-content,
    .intro-split,
    .trust-split,
    .approach-split,
    .cta-content,
    .about-intro-split,
    .philosophy-split,
    .experience-split,
    .commitment-split-content,
    .services-intro-split,
    .service-detail-split,
    .inquiry-container,
    .contact-split-section,
    .thanks-container {
        flex-direction: column;
    }

    .hero-text h1,
    .hero-text-full h1 {
        font-size: 2rem;
    }

    .nav-right {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .values-grid,
    .faq-grid,
    .location-details-grid {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}
