.page-content {
    padding: 100px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-content.services-page {
    padding-top: 0;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    background-color: white;
    position: relative;
    margin-top: -1px;
}

body.regular-page .page-content.services-page {
    margin-top: 0;
    padding-top: 0;
}

.page-content > h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1a1a1a;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.01em;
}

.page-content > p {
    color: #666;
    font-size: 20px;
    text-align: center;
    margin-bottom: 48px;
}

/* Services Hero Section */
.services-hero {
    position: relative;
    width: 100%;
    padding: 100px 20px 80px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1a1a1a;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.services-hero-content h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #1a1a1a !important;
}

.services-hero-content p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #3a3a3a !important;
}

/* Services Grid Wrapper */
.services-grid-wrapper {
    width: 100%;
    background-color: white;
    padding: 100px 0 0 0;
    margin-bottom: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
    max-width: 1200px;
    width: 100%;
}

.service-item {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c9a961 0%, #d4c5a9 50%, #c9a961 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25), 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(201, 169, 97, 0.3);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item-image {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2a2a2a;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.service-item:hover .service-item-image::after {
    opacity: 0.3;
}

.service-item:hover .service-item-image {
    transform: scale(1.06);
}

.service-item-content {
    padding: 40px;
    text-align: left;
    position: relative;
    background: #1a1a1a;
}

.service-item h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.service-item p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.service-item p:last-child {
    margin-bottom: 0;
}

/* Service Expand/Collapse */
html {
    scroll-behavior: smooth;
}

.service-item {
    scroll-margin-top: 120px;
}

.service-preview {
    margin-bottom: 16px;
}

.service-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    margin-bottom: 0;
}

.service-item.expanded .service-expanded {
    max-height: 2000px;
    margin-bottom: 24px;
}

.service-toggle {
    color: #c9a961;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    user-select: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-toggle:hover {
    color: #d4c5a9;
    letter-spacing: 0.8px;
}

.service-toggle::after {
    content: ' Read more →';
    text-transform: none;
    font-weight: 400;
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-item.expanded .service-toggle::after {
    content: ' Read less ↑';
}

.service-toggle:hover::after {
    transform: translateX(4px);
}

.service-item.expanded .service-toggle:hover::after {
    transform: translateY(-2px);
}

/* Services CTA Section */
.services-cta {
    text-align: center;
    padding: 100px 20px;
    background-image: url('../assets/Millers Landscaping Photos/Millers-Landscaping-15.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #1a1a1a;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    margin-top: -1px;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.services-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    color: white;
}

.services-cta h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.services-cta p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: rgba(255, 255, 255, 0.95);
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta-buttons {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta .btn-primary {
    background-color: #c9a961;
    color: #1a1a1a;
    border: 2px solid #c9a961;
    padding: 18px 44px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    text-decoration: none;
    display: inline-block;
}

.services-cta .btn-primary:hover {
    background-color: #d4c5a9;
    border-color: #d4c5a9;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.services-cta .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 18px 44px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    text-decoration: none;
    display: inline-block;
}

.services-cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.services-phone-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    padding: 12px 0;
    position: relative;
    display: inline-block;
}

.services-phone-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a961;
    transition: width 0.3s ease;
}

.services-phone-link:hover {
    color: #c9a961;
}

.services-phone-link:hover::after {
    width: 100%;
}

/* About Page Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    padding: 140px 20px 100px;
    background: linear-gradient(180deg, #d4c5a9 0%, #c9b99b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1a1a1a;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.about-hero-content h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #1a1a1a;
}

.about-hero-content p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #3a3a3a;
}

.about-page {
    width: 100%;
    min-height: 100vh;
    background-color: white;
}

/* About Intro Section */
.about-intro-section {
    padding: 140px 20px 100px;
    background-color: white;
}

.about-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-intro-content h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    position: relative;
    padding-bottom: 24px;
}

.about-intro-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a961 0%, #d4c5a9 100%);
    border-radius: 2px;
}

.about-intro-section.animated .about-intro-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.about-intro-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #3a3a3a;
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    font-weight: 400;
}

.about-intro-section.animated .about-intro-text {
    opacity: 1;
    transform: translateY(0);
}

.about-intro-section.animated .about-intro-text:nth-of-type(1) {
    transition-delay: 0.1s;
}

.about-intro-section.animated .about-intro-text:nth-of-type(2) {
    transition-delay: 0.2s;
}

/* About Features Section */
.about-features-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #d4c5a9 0%, #c9b99b 100%);
    position: relative;
}

.about-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06) 20%, rgba(0, 0, 0, 0.06) 80%, transparent);
}

.about-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06) 20%, rgba(0, 0, 0, 0.06) 80%, transparent);
}

.about-features-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.about-feature-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 48px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-features-section.animated .about-feature-card {
    opacity: 1;
    transform: translateY(0);
}

.about-features-section.animated .about-feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.about-features-section.animated .about-feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.about-features-section.animated .about-feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c9a961 0%, #d4c5a9 50%, #c9a961 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px 12px 0 0;
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.1);
}

.about-feature-card:hover::before {
    opacity: 1;
}

.about-feature-card h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.about-feature-card p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* About Founder Section */
.about-founder-section {
    padding: 100px 20px;
    background-color: white;
}

.about-founder-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-founder-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-founder-section.animated .about-founder-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.about-founder-text h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    position: relative;
    padding-bottom: 24px;
}

.about-founder-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a961 0%, #d4c5a9 100%);
    border-radius: 2px;
}

.about-founder-text p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #3a3a3a;
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 400;
}

.about-founder-text p:last-child {
    margin-bottom: 0;
}

.about-founder-image {
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-founder-section.animated .about-founder-image {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.about-founder-image-container {
    width: 100%;
    height: 560px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15);
    background-color: #1a1a1a;
    border: 4px solid #c9a961;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-founder-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    border-radius: 12px;
}

.about-founder-image:hover .about-founder-image-container {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* About Approach Section */
.about-approach-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f6f3 100%);
    position: relative;
}

.about-approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06) 20%, rgba(0, 0, 0, 0.06) 80%, transparent);
}

.about-approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-approach-image {
    order: 1;
}

.about-approach-text {
    order: 2;
}

.about-approach-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-approach-section.animated .about-approach-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.about-approach-text h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    position: relative;
    padding-bottom: 24px;
}

.about-approach-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a961 0%, #d4c5a9 100%);
    border-radius: 2px;
}

.about-approach-text p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #3a3a3a;
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 400;
}

.about-approach-text p:last-child {
    margin-bottom: 0;
}

.about-approach-image {
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-approach-section.animated .about-approach-image {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.about-approach-image-container {
    width: 100%;
    height: 560px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15);
    background-color: #1a1a1a;
    border: 4px solid #c9a961;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-approach-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    border-radius: 12px;
}

.about-approach-image:hover .about-approach-image-container {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* About CTA Section */
.about-cta {
    text-align: center;
    padding: 100px 20px;
    background-image: url('../assets/Millers Landscaping Photos/Millers-Landscaping-28.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #1a1a1a;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.about-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    color: white;
}

.about-cta h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.about-cta p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: rgba(255, 255, 255, 0.95);
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-buttons {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.about-cta .btn-primary {
    background-color: #c9a961;
    color: #1a1a1a;
    border: 2px solid #c9a961;
    padding: 18px 44px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.about-cta .btn-primary:hover {
    background-color: #d4c5a9;
    border-color: #d4c5a9;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.about-phone-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    padding: 12px 0;
    position: relative;
    display: inline-block;
}

.about-phone-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a961;
    transition: width 0.3s ease;
}

.about-phone-link:hover {
    color: #c9a961;
}

.about-phone-link:hover::after {
    width: 100%;
}

@media (max-width: 968px) {
    .about-intro {
        margin-bottom: 60px;
    }

    .about-intro h2 {
        font-size: 42px;
    }

    .about-intro p {
        font-size: 16px;
    }

    .about-features {
        padding: 0 20px 60px 20px;
        margin-bottom: 0;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-feature h3 {
        font-size: 24px;
    }

    .about-feature p {
        font-size: 15px;
    }

    .about-approach {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px 60px 20px;
        margin-bottom: 0;
    }

    .about-approach-content h2 {
        font-size: 32px;
    }

    .about-approach-content p {
        font-size: 16px;
    }
    
    .about-image-container {
        height: 400px;
    }

    .about-cta {
        padding: 60px 24px;
        background-attachment: scroll;
    }

    .about-cta.animated {
        opacity: 1;
        transform: translateY(0);
    }

    .about-cta-content {
        max-width: 100%;
    }

    .about-cta h2 {
        font-size: 32px;
    }

    .about-cta p {
        font-size: 16px;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .about-phone-link {
        font-size: 18px;
    }
}

/* Gallery Hero Section */
.gallery-hero {
    position: relative;
    width: 100%;
    padding: 140px 20px 100px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1a1a1a;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.gallery-hero-content h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #1a1a1a !important;
}

.gallery-hero-content p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(26, 26, 26, 0.85) !important;
}

.gallery-page {
    width: 100%;
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
}

body.regular-page {
    background-color: #f8f6f3;
}

body.regular-page .page-content.services-page {
    background-color: white;
    margin-top: 0;
    padding-top: 0;
}

body.regular-page .services-hero {
    margin-top: 0;
    padding-top: 100px;
}

body.regular-page .navbar + .page-content.services-page {
    margin-top: 0;
}

body.regular-page .financing-page {
    background-color: transparent;
}

body.regular-page .page-content.financing-page {
    background-color: transparent;
}

body.regular-page .financing-hero {
    margin-bottom: 0;
}

body.regular-page .gallery-page {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
}

/* Modern Masonry-Style Gallery */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1400px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: #e0e0e0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    aspect-ratio: 1;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-item.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 6px 16px rgba(0, 0, 0, 0.15);
    z-index: 10;
    border-color: rgba(201, 169, 97, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    display: block;
    opacity: 0;
    background-color: #e0e0e0;
}

.gallery-item img[loading="eager"],
.gallery-item img.loaded {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease, background 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.gallery-icon {
    color: white;
    font-size: 56px;
    font-weight: 300;
    transform: scale(0.8) rotate(0deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1) rotate(90deg);
}

/* Gallery CTA Section */
.gallery-cta {
    text-align: center;
    padding: 100px 20px;
    background-image: url('../assets/Millers Landscaping Photos/Millers-Landscaping-9.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #1a1a1a;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0;
}

.gallery-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.gallery-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    color: white;
}

.gallery-cta h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.gallery-cta p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: rgba(255, 255, 255, 0.95);
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-cta-buttons {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-cta .btn-primary {
    background-color: #c9a961;
    color: #1a1a1a;
    border: 2px solid #c9a961;
    padding: 18px 44px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    text-decoration: none;
    display: inline-block;
}

.gallery-cta .btn-primary:hover {
    background-color: #d4c5a9;
    border-color: #d4c5a9;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.gallery-phone-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    padding: 12px 0;
    position: relative;
    display: inline-block;
}

.gallery-phone-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a961;
    transition: width 0.3s ease;
}

.gallery-phone-link:hover {
    color: #c9a961;
}

.gallery-phone-link:hover::after {
    width: 100%;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 48px;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 48px;
    font-weight: 300;
    cursor: pointer;
    padding: 20px;
    transition: opacity 0.3s ease;
    z-index: 10000;
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .page-content {
        padding: 80px 16px 40px;
    }

    .page-content.services-page {
        padding-top: 90px;
    }

    .page-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .page-content > p {
        font-size: 16px;
        line-height: 1.6;
        padding: 0;
        margin-bottom: 32px;
    }
    
    .gallery-hero-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .gallery-hero-content p {
        font-size: 16px;
        line-height: 1.6;
        padding: 0;
        margin-bottom: 0;
    }

    .services-hero {
        margin-bottom: 0;
        padding: 100px 20px 60px;
        opacity: 1 !important;
        transform: none !important;
        margin-top: 0;
    }

    .services-hero-content h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .services-hero-content p {
        font-size: 17px;
    }
    
    .services-cta {
        opacity: 1 !important;
        transform: none !important;
    }

    .services-grid-wrapper {
        padding: 60px 0 0 0;
        margin-bottom: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px 60px 20px;
    }

    .service-item {
        opacity: 1 !important;
        transform: none !important;
    }

    .service-item-image {
        height: 260px;
    }

    .service-item-content {
        padding: 32px 24px;
    }

    .service-item h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .service-item p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
    }

    .services-cta {
        padding: 60px 16px;
        min-height: 0;
        background-attachment: scroll;
        background-image: none;
        background-color: #1a1a1a;
        margin-top: -1px;
    }
    
    .services-cta::before {
        display: none;
    }

    .services-cta-content {
        max-width: 100%;
    }

    .services-cta h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .services-cta p {
        font-size: 17px;
        margin-bottom: 32px;
        max-width: 100%;
    }
    
    .services-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .services-cta .btn-primary,
    .services-cta .btn-secondary {
        font-size: 15px;
        padding: 16px 32px;
    }

    .services-cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .services-phone-link {
        font-size: 18px;
    }

    .about-hero {
        padding: 100px 20px 60px;
    }

    .about-hero-content {
        padding: 0 20px;
    }

    .about-hero-content h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .about-hero-content p {
        font-size: 17px;
    }

    .about-intro-section {
        padding: 100px 20px 60px;
    }
    
    .about-intro-section.animated,
    .about-intro-section.animated h1,
    .about-intro-section.animated .about-intro-text {
        opacity: 1 !important;
        transform: none !important;
    }

    .about-intro-content h1 {
        font-size: 40px;
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    
    .about-intro-content h1::after {
        width: 50px;
        height: 2px;
    }

    .about-intro-text {
        font-size: 17px;
        line-height: 1.7;
        color: #3a3a3a;
    }

    .about-features-section {
        padding: 60px 20px;
    }
    
    .about-features-section::before {
        display: none;
    }
    
    .about-features-section.animated,
    .about-features-section.animated .about-feature-card {
        opacity: 1 !important;
        transform: none !important;
    }

    .about-features-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-feature-card {
        padding: 36px 28px;
    }

    .about-feature-card h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .about-feature-card p {
        font-size: 15px;
    }

    .about-founder-section {
        padding: 60px 20px;
    }
    
    .about-founder-section.animated,
    .about-founder-section.animated .about-founder-text,
    .about-founder-section.animated .about-founder-image {
        opacity: 1 !important;
        transform: none !important;
    }

    .about-founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-founder-text h2 {
        font-size: 36px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .about-founder-text h2::after {
        width: 50px;
        height: 2px;
    }

    .about-founder-text p {
        font-size: 17px;
        color: #3a3a3a;
    }

    .about-founder-image-container {
        height: 300px;
        border-width: 3px;
    }
    
    .about-founder-image-container::after {
        display: none;
    }

    .about-approach-section {
        padding: 60px 20px;
    }
    
    .about-approach-section::before {
        display: none;
    }
    
    .about-approach-section.animated,
    .about-approach-section.animated .about-approach-text,
    .about-approach-section.animated .about-approach-image {
        opacity: 1 !important;
        transform: none !important;
    }

    .about-approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-approach-text h2 {
        font-size: 36px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .about-approach-text h2::after {
        width: 50px;
        height: 2px;
    }

    .about-approach-text p {
        font-size: 17px;
        color: #3a3a3a;
    }

    .about-approach-image-container {
        height: 300px;
        border-width: 3px;
    }
    
    .about-approach-image-container::after {
        display: none;
    }
    
    .about-cta.animated {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .about-cta.animated h2,
    .about-cta.animated p,
    .about-cta.animated .about-cta-buttons {
        opacity: 1 !important;
        transform: none !important;
    }

    .about-cta {
        padding: 60px 16px;
        min-height: 0;
        background-attachment: scroll;
        background-image: none;
        background-color: #1a1a1a;
    }
    
    .about-cta::before {
        display: none;
    }

    .about-cta h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .about-cta p {
        font-size: 17px;
        margin-bottom: 32px;
        max-width: 100%;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .about-cta .btn-primary {
        font-size: 15px;
        padding: 16px 32px;
    }

    .gallery-hero {
        padding: 100px 20px 60px;
        opacity: 1 !important;
        transform: none !important;
    }

    .gallery-hero-content h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .gallery-hero-content p {
        font-size: 17px;
    }

    .gallery-page {
        padding: 60px 0 60px;
    }
    
    .gallery-container {
        padding: 0 16px;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .gallery-item {
        border-radius: 10px;
        opacity: 1 !important;
        transform: none !important;
    }

    .gallery-cta {
        padding: 60px 16px;
        min-height: 0;
        background-attachment: scroll;
        background-image: none;
        background-color: #1a1a1a;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .gallery-cta::before {
        display: none;
    }

    .gallery-cta-content {
        max-width: 100%;
    }

    .gallery-cta h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .gallery-cta p {
        font-size: 17px;
        margin-bottom: 32px;
        max-width: 100%;
    }
    
    .gallery-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .gallery-cta .btn-primary {
        font-size: 15px;
        padding: 16px 32px;
    }

    .gallery-cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .gallery-phone-link {
        font-size: 18px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 36px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 36px;
        padding: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

/* Legal pages (privacy, terms) */
.legal-page {
    padding-top: 120px;
}

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

.legal-hero h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.legal-meta {
    color: #666;
    font-size: 14px;
    text-transform: none;
    margin-bottom: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.legal-intro {
    color: #3a3a3a;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
}

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

.legal-section {
    background: #fff;
    border-radius: 8px;
    padding: 28px 28px 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.legal-section h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.legal-section p,
.legal-section ul {
    color: #3a3a3a;
    font-size: 15px;
    line-height: 1.7;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
}

.legal-section ul {
    padding-left: 20px;
    margin: 8px 0 0;
}

.legal-section li {
    margin-bottom: 4px;
}

.legal-section a {
    color: #c9a961;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .legal-page {
        padding-top: 100px;
    }

    .legal-hero {
        margin-bottom: 40px;
        padding: 0 4px;
    }

    .legal-hero h1 {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .legal-intro {
        font-size: 16px;
    }

    .legal-body {
        max-width: 100%;
    }

    .legal-section {
        padding: 20px 16px 18px;
    }
}

/* Financing Page Styles */
.page-content.financing-page {
    padding-top: 0;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    background-color: transparent;
}

.financing-page {
    width: 100%;
    min-height: 100vh;
    background-color: transparent;
}

.financing-hero {
    position: relative;
    width: 100%;
    padding: 140px 20px 80px;
    background: linear-gradient(180deg, #d4c5a9 0%, #c9b99b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-bottom: 0;
    overflow: hidden;
}

body.regular-page .financing-hero {
    margin-bottom: 0;
}

body.regular-page .page-content.financing-page {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

body.regular-page .page-content.financing-page + .footer {
    margin-top: 0;
}

.financing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.financing-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1a1a1a;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.financing-hero-content h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #1a1a1a;
}

.financing-intro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #3a3a3a;
}

.financing-cta {
    text-align: center;
    margin-top: 40px;
}

.financing-btn-black {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
    padding: 18px 44px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    text-decoration: none;
    display: inline-block;
}

.financing-btn-black:hover {
    background-color: #2a2a2a;
    border-color: #2a2a2a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Financing Why Choose Us Section */
.financing-why-section {
    padding: 100px 20px;
    background-color: white;
}

.financing-why-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.financing-why-content h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.financing-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.financing-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    background: #f8f6f3;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.financing-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.financing-check {
    font-size: 24px;
    color: #c9a961;
    font-weight: 700;
    line-height: 1;
}

.financing-feature-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

@media (max-width: 968px) {
    .financing-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .financing-why-section {
        padding: 60px 20px;
    }

    .financing-why-content h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .financing-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .financing-feature {
        padding: 20px;
    }

    .financing-feature-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .financing-hero {
        padding: 100px 20px 60px;
    }

    .financing-hero-content {
        padding: 0 20px;
    }

    .financing-hero-content h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .financing-intro {
        font-size: 17px;
        margin-bottom: 32px;
    }

    .financing-cta {
        margin-top: 32px;
    }

    .financing-btn-black {
        font-size: 15px;
        padding: 16px 32px;
    }
        margin-bottom: 16px;
    }

    .legal-section h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .legal-section p,
    .legal-section ul {
        font-size: 14px;
    }
}


