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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

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

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-full {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.75), rgba(230, 126, 34, 0.55));
}

.hero-content-center {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
    color: #ffffff;
}

.hero-content-center h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.cta-hero:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
}

.container-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.intro-story {
    padding: 120px 0 100px;
    background-color: #ffffff;
}

.opening-line {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #34495e;
    font-weight: 400;
}

.intro-story p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #4a5568;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 50px 0;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.problem-reveal {
    padding: 110px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.problem-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
    font-weight: 700;
}

.problem-grid {
    display: flex;
    gap: 45px;
    justify-content: space-between;
}

.problem-item {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.problem-item h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #e67e22;
    font-weight: 600;
}

.problem-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.insight-section {
    padding: 130px 0;
    background-color: #ffffff;
}

.insight-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
}

.insight-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a5568;
    line-height: 1.8;
}

.citation {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.insight-visual {
    flex: 1;
}

.side-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.trust-builder {
    padding: 100px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-builder h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 80px;
    color: #ffffff;
    font-weight: 700;
}

.testimonial-block {
    margin-bottom: 55px;
}

.testimonial-block blockquote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    padding: 40px 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 5px solid #e67e22;
    border-radius: 8px;
}

.testimonial-block cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #ecf0f1;
    font-weight: 500;
}

.benefits-reveal {
    padding: 120px 0;
    background-color: #ffffff;
}

.benefits-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
    font-weight: 700;
}

.benefits-stack {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.benefit-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.benefit-image {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.benefit-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.how-it-works {
    padding: 110px 0;
    background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
}

.how-it-works h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
    font-weight: 700;
}

.steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

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

.step-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.step-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.service-showcase {
    padding: 130px 0;
    background-color: #ffffff;
}

.service-showcase h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
    font-weight: 700;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 25px);
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #ecf0f1;
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 25px 20px;
}

.price-tag {
    background-color: #e67e22;
    color: #ffffff;
    padding: 15px 25px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.form-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #ecf0f1;
}

.solar-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 50px 45px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #ecf0f1;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: border-color 0.3s;
}

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

.form-group select option {
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

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

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
    font-style: italic;
}

.references-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 600;
}

.references-list {
    padding-left: 25px;
}

.references-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.references-list a {
    color: #e67e22;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 70px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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: 30px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.header-subtitle {
    font-size: 20px;
    color: #ecf0f1;
    font-weight: 300;
}

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

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #34495e;
    font-weight: 400;
}

.about-story p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #4a5568;
    line-height: 1.8;
}

.content-image {
    width: 100%;
    height: auto;
    margin: 50px 0;
    border-radius: 10px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.mission-values {
    padding: 110px 0;
    background-color: #f8f9fa;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #e67e22;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.team-section {
    padding: 110px 0;
    background-color: #ffffff;
}

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

.team-intro {
    margin-bottom: 40px;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.team-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-top: 40px;
}

.impact-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.impact-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #ffffff;
    font-weight: 700;
}

.stats-display {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-bottom: 60px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 52px;
    font-weight: 800;
    color: #e67e22;
    margin-bottom: 15px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #ecf0f1;
}

.impact-text {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    color: #ecf0f1;
}

.commitment-section {
    padding: 110px 0;
    background-color: #ffffff;
}

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

.commitment-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 28px;
}

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

.service-detail-block {
    display: flex;
    gap: 70px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

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

.feature-list {
    margin: 30px 0;
    padding-left: 25px;
}

.feature-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a5568;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

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

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #e67e22;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    background-color: #ecf0f1;
    margin-bottom: 30px;
}

.consultation-note {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.consultation-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.process-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
    font-weight: 700;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.timeline-item {
    background-color: #ffffff;
    padding: 35px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.timeline-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e67e22;
    font-weight: 600;
}

.timeline-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

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

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

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

.faq-item {
    flex: 1 1 calc(50% - 20px);
}

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

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

.thanks-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.thanks-content h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 35px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    text-align: center;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 50px;
}

.service-confirmation {
    text-align: center;
    margin-bottom: 70px;
}

.selected-service {
    font-size: 18px;
    color: #34495e;
}

.selected-service strong {
    color: #e67e22;
}

.next-steps {
    margin-bottom: 70px;
}

.next-steps h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
}

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

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

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

.thanks-image {
    margin: 60px 0;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.additional-resources {
    margin-bottom: 60px;
}

.additional-resources h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.additional-resources p {
    font-size: 17px;
    text-align: center;
    margin-bottom: 40px;
    color: #4a5568;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.resource-link {
    display: inline-block;
    padding: 14px 30px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.resource-link:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.contact-reminder {
    text-align: center;
    margin-top: 60px;
}

.contact-reminder p {
    font-size: 16px;
    color: #6c757d;
}

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

.last-updated {
    font-size: 14px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 50px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 24px;
    margin: 35px 0 18px;
    color: #34495e;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a5568;
}

.legal-content ul {
    margin: 20px 0 20px 25px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
}

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

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

@media (max-width: 1024px) {
    .problem-grid {
        flex-direction: column;
    }

    .insight-split {
        flex-direction: column;
    }

    .benefit-row,
    .benefit-row.reverse {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 18px);
    }

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

    .contact-layout {
        flex-direction: column;
    }

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

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

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

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

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

    .service-card {
        width: 100%;
    }

    .nav-links {
        gap: 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

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

    .resource-links {
        flex-direction: column;
    }
}