* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

header {
    background: #ffffff;  /* Changed to white for sticky header visibility */
    color: #ffffff;
    padding: 10px 0;  /* Remove left padding for full width */
    text-align: left;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  /* Add shadow for depth when sticky */
}

h1 {
    margin: 0;
}

nav {
    margin: 0; /* Changed from 20px 0 */
    flex: 1;              /* Take up remaining space */
    display: flex;        /* Enable centering of ul */
    justify-content: flex-end;  /* Align nav items to the right */
    padding-right: 2rem;  /* Add right padding for balance */
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #3d2b1f;
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

nav a {
    color: #3d2b1f;  /* Changed from #ffffff to dark brown */
    text-decoration: none;
    padding: 12px 10px; /* Increased padding for more spacing */
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 600;   /* Increased from 500 for bolder text */
    font-size: 1.1rem;  /* Increased from 0.9rem for better readability */
    text-transform: uppercase;  /* Add this line to capitalize menu text */
    letter-spacing: 0.5px;       /* Reduced spacing between letters */
    text-align: center;        /* Center text within menu items */
    display: inline-block;     /* Ensure proper text alignment */
    white-space: nowrap;       /* Prevent text from wrapping to multiple lines */
}

nav a:hover {
    background: rgba(191, 127, 63, 0.8);
    color: #ffffff;  /* Keep white text on hover for contrast */
    transition: background-color 0.3s ease;
    font-weight: 700;  /* Even bolder on hover */
}

/* Contractor Navigation Styles */
.contractor-nav .nav-icon {
    font-size: 1rem;
    margin-right: 4px;
}

.contractor-nav a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.contractor-nav .logout-link {
    color: #d32f2f;
}

.contractor-nav .logout-link:hover {
    background: #d32f2f;
    color: #ffffff;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

footer {
    background: #ffffff;
    color: #3d2b1f;
    padding: 2rem 0 5rem 0;
    border-top: 1px solid #e0e0e0;
    margin-top: 4rem;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
}

.footer-mission {
    text-align: left;
}

.footer-mission p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3rem;
    align-items: start;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    text-align: left;
}

.footer-nav a {
    color: #3d2b1f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
}

.footer-nav a:hover {
    background: rgba(191, 127, 63, 0.8);
    color: #ffffff;
    font-weight: 700;
}

/* Contractor footer navigation - centered on right side */
.contractor-footer-nav {
    grid-template-columns: 1fr;
    justify-items: end;
}

.contractor-footer-nav ul {
    align-items: center;
    text-align: center;
}

.footer-info {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 2rem;
    margin-bottom: 0;
    padding-top: 1rem;
    padding-bottom: 0;
    border-top: 1px solid #e0e0e0;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.footer-info p {
    margin: 0.5rem 0;
    color: #666;
}

@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-mission {
        text-align: center;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-nav ul {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 1.5rem 0;
        margin-bottom: 80px;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-logo {
        max-width: 150px;
        margin-bottom: 1rem;
    }

    .footer-nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .footer-nav a {
        font-size: 0.85rem;
    }
}

/* Add new header container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;  /* Align logo to left, let nav handle centering */
    width: 100%;                  /* Full width container */
    max-width: none;              /* Remove max-width restriction for full width */
    background-color: transparent;  /* Changed from #3d2b1f to transparent */
    padding: 0.5rem 2rem;         /* Add horizontal padding instead of margin */
    margin: 0;                    /* Remove margin for full width */
}

/* Logo styles */
.logo {
    max-width: 180px;  /* Reduced from 300px */
    margin-right: auto;  /* Push nav to the right side */
    margin-left: 2rem;  /* Add left spacing for logo */
    display: block;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 60px;  /* Reduced from 100px */
    object-fit: contain;  /* Maintain aspect ratio */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;  /* Center the menu items */
    gap: 1.5rem;              /* Increased spacing between items */
    margin: 0 auto;         /* Center the whole nav container */
    padding: 0 2rem;        /* Add some padding on the sides */
}

/* Two-column hero section */
.two-column-hero {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 4rem 4rem;  /* Equal top and bottom padding */
    align-items: center;
}

.hero-left {
    padding-right: 2rem;
}

.hero-left h1 {
    font-size: 2.5rem;
    color: #3d2b1f;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.4rem;
    color: #bf7f3f;
    margin-bottom: 2rem;
    font-weight: 600;
}

.sales-copy {
    margin-bottom: 2rem;
}

.sales-copy p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.sales-copy h2 {
    font-size: 1.8rem;
    color: #3d2b1f;
    margin: 2rem 0 1rem 0;
}

/* Top benefits section */
.top-benefits {
    background-color: transparent;
    padding: 0;
    margin: 2rem 0;
}

.top-benefits h2 {
    font-size: 2.2rem;
    color: #bf7f3f;
    margin: 0 0 1.5rem 0;
    text-align: left;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.3;
    font-family: 'Trebuchet MS', 'Lucida Sans', sans-serif;
    text-transform: uppercase;
}

.primary-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.primary-benefits li {
    padding: 0.5rem 0 0.5rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.primary-benefits li:before {
    content: "🔨";
    position: absolute;
    left: 0;
    color: #bf7f3f;
    font-weight: bold;
    font-size: 1.3rem;
}

.primary-benefits li strong {
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 0.5rem;
}

/* Why Choose section with different background - Full Width */
.why-choose-section {
    background-color: #e8e8e8;
    width: 100%;
    padding: 3rem 0;
    margin: 0;
}

.why-choose-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.why-choose-section h2 {
    margin-top: 0;
    text-align: left;
    font-size: 2.2rem;
    color: #bf7f3f;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
    font-family: 'Trebuchet MS', 'Lucida Sans', sans-serif;
    text-transform: uppercase;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefits-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #bf7f3f;
    font-weight: bold;
    font-size: 1.5rem;
}

.highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3d2b1f;
    font-style: italic;
    margin: 2rem 0;
}

.cta-section {
    margin-top: 3rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #bf7f3f;
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(191, 127, 63, 0.3);
}

.cta-button:hover {
    background-color: #3d2b1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(61, 43, 31, 0.4);
}

.cta-subtext {
    margin-top: 1rem;
    color: #666;
    font-size: 0.95rem;
}

.hero-right {
    /* Removed sticky positioning so both columns scroll equally */
    margin-top: 0;  /* Align image to the top */
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Fade animation */
.fade {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

/* Navigation arrows */
.prev-slide,
.next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(61, 43, 31, 0.7);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.prev-slide:hover,
.next-slide:hover {
    background-color: rgba(61, 43, 31, 0.9);
}

.prev-slide {
    left: 10px;
}

.next-slide {
    right: 10px;
}

/* Slide dots/indicators */
.slide-dots {
    text-align: center;
    padding: 1rem 0;
    position: absolute;
    bottom: 10px;
    width: 100%;
    z-index: 10;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: rgba(191, 127, 63, 1);
}

.image-caption {
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

/* Responsive design for tablets and mobile */

/* Tablet styles (768px - 968px) */
@media (max-width: 968px) {
    body {
        padding-left: 1rem;
    }

    header {
        padding: 10px 0 10px 1rem;
    }

    .header-container {
        margin: 0 0.5rem;
    }

    .logo {
        max-width: 200px;
        margin-right: 2rem;
    }

    .logo img {
        max-height: 70px;
    }

    nav a {
        font-size: 1.2rem;
        padding: 10px 14px;
    }

    nav ul {
        gap: 2rem;
        padding: 0 1rem;
    }

    .two-column-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem 6rem 1rem;
    }

    .hero-left {
        padding-right: 0;
    }

    .hero-right {
        position: relative;
        top: 0;
    }

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

    .subtitle {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }

    .floating-cta-button {
        font-size: 1.1rem;
        padding: 1.2rem 0;
    }
}

/* Mobile styles (max 768px) */
@media (max-width: 768px) {
    body {
        padding-left: 0;
    }

    header {
        padding: 5px 0;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        padding: 0.5rem 0 0.5rem 1.5rem;  /* Reduced vertical padding for slimmer header */
    }

    .logo {
        max-width: 180px;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;  /* Remove left margin for even spacing */
    }

    .logo img {
        max-height: 60px;
    }

    /* Show hamburger menu button */
    .mobile-menu-toggle {
        display: block;
        order: 3;
        margin-right: 2.5rem;  /* Increased to 2.5rem for more spacing from edge */
    }

    /* Hide navigation by default on mobile */
    nav {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: top 0.3s ease;
        z-index: 999;
        padding-top: 4rem;
        padding-bottom: 0.5rem;
    }

    /* Show navigation when active */
    nav.active {
        top: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        width: 100%;
    }

    nav li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    nav li:last-child {
        border-bottom: none;
    }

    nav a {
        font-size: 1rem;
        padding: 1.25rem 1rem;
        width: 100%;
        text-align: center !important;
        display: block;
        justify-content: center;
    }

    nav a:hover {
        background: rgba(191, 127, 63, 0.8);
        color: #ffffff;
    }

    .two-column-hero {
        padding: 1rem 1rem 6rem 1rem;
        margin: 0 auto;
    }

    .hero-left h1 {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .top-benefits {
        margin: 1rem 0;
    }

    .top-benefits h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .primary-benefits {
        margin: 1rem 0;
    }

    .primary-benefits li {
        padding: 0.5rem 0 0.5rem 2rem;
        font-size: 0.95rem;
    }

    .sales-copy p {
        font-size: 1rem;
    }

    .sales-copy h2 {
        font-size: 1.4rem;
        text-align: center;
    }

    .benefits-list li {
        font-size: 0.95rem;
        padding: 0.8rem 0 0.8rem 2rem;
    }

    .benefits-list li:before {
        font-size: 1.2rem;
    }

    .highlight {
        font-size: 1rem;
        text-align: center;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
    }

    .floating-cta-button {
        font-size: 0.95rem;
        padding: 1rem 0;
    }

    .floating-cta-button:hover {
        padding: 1rem 0;
    }
}

/* Extra small mobile (max 480px) */
@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.4rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .sales-copy h2 {
        font-size: 1.2rem;
    }

    nav a {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 0.9rem 1.5rem;
    }

    .floating-cta-button {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}

/* Floating bottom button */
.floating-cta-button {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #bf7f3f;  /* Brown color matching your theme */
    color: #ffffff;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-cta-button:hover {
    background-color: #3d2b1f;  /* Darker brown on hover */
    padding: 1.7rem 0;
    box-shadow: 0 -6px 15px rgba(0, 0, 0, 0.3);
}

.floating-cta-button a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

/* List Your Services Page Styles */
.services-page {
    background-color: #f9f9f9;
}

.hero-section {
    background: linear-gradient(135deg, #3d2b1f 0%, #bf7f3f 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #3d2b1f;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #3d2b1f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.roi-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-top: 3px solid #bf7f3f;
    border-bottom: 3px solid #bf7f3f;
}

.roi-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #3d2b1f;
    margin-bottom: 3rem;
    font-weight: 700;
}

.roi-content {
    max-width: 1100px;
    margin: 0 auto;
}

.roi-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.roi-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.roi-card.highlight-card {
    border: 3px solid #bf7f3f;
}

.roi-card.success-card {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
}

.roi-card.success-card h3,
.roi-card.success-card .roi-label {
    color: #ffffff;
}

.roi-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.roi-card h3 {
    font-size: 1.3rem;
    color: #3d2b1f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.roi-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #bf7f3f;
    margin: 0.5rem 0;
    line-height: 1;
}

.roi-card.success-card .roi-number {
    color: #ffffff;
}

.roi-label {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

.roi-arrow {
    font-size: 3rem;
    color: #bf7f3f;
    font-weight: 700;
}

.roi-breakdown {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.roi-breakdown h3 {
    font-size: 1.8rem;
    color: #3d2b1f;
    margin-bottom: 1.5rem;
    text-align: center;
}

.roi-breakdown ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.roi-breakdown li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1rem;
    color: #333;
}

.roi-breakdown li:last-child {
    border-bottom: none;
}

.roi-breakdown strong {
    color: #3d2b1f;
}

.roi-callout {
    background: linear-gradient(135deg, #bf7f3f 0%, #d4915d 100%);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.6;
    margin-top: 1.5rem;
}

.comparison-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #3d2b1f;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 1200px;
}

.comparison-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table thead {
    background: linear-gradient(135deg, #3d2b1f 0%, #5a3f2e 100%);
    color: #ffffff;
}

.comparison-table th {
    padding: 2.5rem 2rem;
    text-align: center;
    font-weight: 600;
    vertical-align: middle;
    border: none;
}

.comparison-table .feature-column {
    text-align: left;
    width: 50%;
    padding-left: 2.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.comparison-table .plan-column {
    width: 25%;
}

.plan-header {
    padding: 1rem 0;
}

.plan-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.plan-header .price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    line-height: 1;
}

.plan-header .price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.badge {
    background: #bf7f3f;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.8rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: #f5f5f5;
}

.comparison-table td {
    padding: 1.8rem 2rem;
    text-align: center;
    vertical-align: middle;
    font-size: 1rem;
    border: none;
}

.comparison-table .feature-name {
    text-align: left;
    font-weight: 500;
    color: #3d2b1f;
    padding-left: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.4;
}

.checkmark {
    color: #28a745;
    font-size: 1.8rem;
    font-weight: 700;
}

.cross {
    color: #dc3545;
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.5;
}

.premium-column {
    background-color: #fffbf5;
}

.cta-row {
    background-color: #f9f9f9;
}

.cta-row td {
    padding: 2.5rem 2rem;
    border-top: 2px solid #e0e0e0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem;
}

.cta-button.primary {
    background-color: #bf7f3f;
    color: #ffffff;
}

.cta-button.primary:hover {
    background-color: #3d2b1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background-color: #ffffff;
    color: #3d2b1f;
    border: 2px solid #3d2b1f;
}

.cta-button.secondary:hover {
    background-color: #3d2b1f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.testimonials-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #3d2b1f;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #bf7f3f;
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #333;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: #3d2b1f;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.faq-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #3d2b1f;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #3d2b1f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #3d2b1f 0%, #bf7f3f 100%);
    color: #ffffff;
    text-align: center;
}

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

.final-cta-section > .container > p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cta-button.primary-large,
.cta-button.secondary-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.cta-button.primary-large {
    background-color: #bf7f3f;
    color: #ffffff;
}

.cta-button.primary-large:hover {
    background-color: #ffffff;
    color: #3d2b1f;
}

.cta-button.secondary-large {
    background-color: #ffffff;
    color: #3d2b1f;
    border: 2px solid #ffffff;
}

.cta-button.secondary-large:hover {
    background-color: transparent;
    color: #ffffff;
}

.cta-note {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .roi-section h2 {
        font-size: 1.8rem;
    }

    .roi-visual {
        flex-direction: column;
        gap: 1rem;
    }

    .roi-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }

    .roi-card {
        max-width: 100%;
        width: 100%;
    }

    .roi-number {
        font-size: 2rem;
    }

    .roi-breakdown {
        padding: 1.5rem;
    }

    .roi-breakdown h3 {
        font-size: 1.4rem;
    }

    .roi-breakdown li {
        font-size: 1rem;
    }

    .roi-callout {
        font-size: 1rem;
        padding: 1rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table .feature-column {
        width: 55%;
        padding-left: 1rem;
        font-size: 0.9rem;
    }

    .comparison-table .plan-column {
        width: 22.5%;
    }

    .comparison-table th {
        padding: 1.5rem 0.5rem;
    }

    .plan-header h3 {
        font-size: 1.2rem;
    }

    .plan-header .price {
        font-size: 1.6rem;
    }

    .plan-header .price span {
        font-size: 0.85rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .comparison-table td {
        padding: 1.2rem 0.5rem;
        font-size: 0.85rem;
    }

    .comparison-table .feature-name {
        padding-left: 1rem;
        font-size: 0.9rem;
    }

    .checkmark {
        font-size: 1.4rem;
    }

    .cross {
        font-size: 1.2rem;
    }

    .cta-row td {
        padding: 1.5rem 0.5rem;
    }

    .cta-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button.primary-large,
    .cta-button.secondary-large {
        width: 100%;
        max-width: 300px;
    }

    .benefits-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Photo Upload Styles */
.field-description {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.file-input {
    padding: 0.75rem;
    border: 2px dashed #bf7f3f;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-input:hover {
    border-color: #3d2b1f;
    background: #f9f5f0;
}

.photo-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.photo-preview-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.photo-preview-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-preview-item .remove-photo {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(191, 127, 63, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.photo-preview-item .remove-photo:hover {
    background: #3d2b1f;
}