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

:root {
    --primary-green: #8ec641;
    --dark-green: #6ea032;
    --black: #000000;
    --dark-grey: #1a1a1a;
    --light-grey: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    min-height: 90px;
    border-bottom: 1px solid var(--white);
}

.navbar.scrolled {
    background: var(--black);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22.5px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-logo-scroll {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    height: 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.nav-menu-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-logo-scroll-left {
    position: absolute;
    right: calc(100% + 40px);
    left: auto;
}

.nav-logo-scroll-right {
    position: absolute;
    left: calc(100% + 40px);
    right: auto;
}

.nav-estimate-button-wrapper {
    position: absolute;
    left: calc(100% + 40px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: left 0.3s ease;
}

.nav-logo-scroll.visible {
    opacity: 1;
    visibility: visible;
}

.nav-logo-scroll-image {
    height: 80px;
    width: auto;
    object-fit: contain;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0 auto;
    flex: 1;
    justify-content: center;
}

.nav-estimate-button {
    padding: 12px 24px;
    background: var(--primary-green);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 198, 65, 0.3);
    white-space: nowrap;
    z-index: 22;
    flex-shrink: 0;
}

.nav-estimate-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 198, 65, 0.5);
}

.nav-menu li a {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 27px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--white);
}

.nav-menu li a.active {
    color: var(--white);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-green);
}

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

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

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    z-index: 1000;
    margin-top: 10px;
}

/* Hide dropdown if empty */
.dropdown-menu:empty {
    display: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: var(--primary-green);
    color: var(--black);
}

/* Ensure dropdown doesn't interfere with active state underline */
.nav-dropdown > a.active::after {
    width: 100%;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: visible;
    margin-top: 90px;
    display: flex;
    flex-direction: column;
}

.hero-logo-background {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    pointer-events: auto;
    cursor: grab;
    transition: transform 0.1s ease;
}


.hero-logo-background:active {
    cursor: grabbing;
}

.hero-logo-image {
    max-width: 600px;
    width: auto;
    height: auto;
    opacity: 1;
    object-fit: contain;
    pointer-events: none;
}

.logo-arrow-bubble {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(142, 198, 65, 0.5);
    pointer-events: none;
    z-index: 21;
}

.logo-arrow-bubble-top {
    top: -40px;
}

.logo-arrow-bubble-bottom {
    bottom: -40px;
}

.logo-arrow-bubble svg {
    width: 24px;
    height: 24px;
    color: var(--black);
}

/* Before/After Slider */
.before-after-slider-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    background: var(--black);
    overflow: visible;
    z-index: 2;
    border-bottom: 1px solid var(--white);
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: grab;
    user-select: none;
}

.before-after-slider:active {
    cursor: grabbing;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: transparent;
}

.before-image {
    z-index: 1;
    opacity: 1;
}

.after-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    opacity: 1;
}

.slider-divider {
    display: none;
}


.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 60px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-green);
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-green);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.cta-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--light-grey);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.feature-card h3 {
    font-size: 22px;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.feature-card > p:not(.feature-desc) {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 18px;
}

.feature-desc {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
    font-weight: normal;
}

.feature-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Content Section */
.main-content {
    padding: 100px 0;
    background: var(--white);
}

.content-header {
    margin-bottom: 60px;
}

.section-number {
    display: inline-block;
    font-size: 120px;
    font-weight: 900;
    color: rgba(0, 255, 136, 0.1);
    line-height: 1;
    margin-bottom: -40px;
}

.content-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.content-header h3 {
    font-size: 24px;
    color: var(--primary-green);
    font-weight: 600;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.content-image {
    width: 100%;
    height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-grey), var(--black));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

/* Quality Services Section */
.quality-services {
    padding: 100px 0;
    background: var(--light-grey);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-item {
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.service-item h3 {
    font-size: 22px;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-item p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

.service-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.step {
    padding: 30px;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.step h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-grey);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.contact-form button {
    align-self: flex-start;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--white);
}

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

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

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Free Estimate Section */
.free-estimate-section {
    padding: 120px 0 100px;
    background: var(--light-grey);
    min-height: calc(100vh - 90px);
}

.estimate-header {
    text-align: center;
    margin-bottom: 60px;
}

.estimate-header h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.estimate-header h2 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.estimate-header p {
    font-size: 18px;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.estimate-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.estimate-form-container h3 {
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.estimate-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.estimate-form .cta-button {
    align-self: flex-start;
    margin-top: 10px;
}

.form-message {
    display: none;
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    background: rgba(142, 198, 65, 0.1);
    color: var(--dark-green);
    border: 2px solid var(--primary-green);
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    color: #cc0000;
    border: 2px solid #cc0000;
}

/* Responsive styles for free estimate form */
@media (max-width: 768px) {
    .free-estimate-section {
        padding: 100px 0 60px;
    }

    .estimate-header h1 {
        font-size: 36px;
    }

    .estimate-header h2 {
        font-size: 28px;
    }

    .estimate-form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo-text {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

.footer-logo p {
    color: var(--white);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
}

.footer-info p {
    color: #ccc;
    line-height: 1.8;
}

.footer-links h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

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

.footer-links ul li a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        gap: 20px;
        margin-left: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .before-after-slider-container {
        height: 50vh;
        min-height: 400px;
    }

    .slider-handle {
        width: 50px;
        height: 50px;
    }

    .slider-handle-icon {
        width: 20px;
        height: 20px;
    }


    .hero-content h1 {
        font-size: 32px;
    }

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

    .content-grid {
        grid-template-columns: 1fr;
    }

    .section-number {
        font-size: 80px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .features .container,
    .services-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 120px 0 80px;
    background: var(--white);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-subtitle {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-description {
    font-size: 18px;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-item {
    padding: 30px;
    background: #f8f8f8;
    border-radius: 8px;
    text-align: center;
}

.contact-info-item h3 {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.team-profiles {
    margin-top: 60px;
}

.team-profiles h2 {
    font-size: 36px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.profile-card {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.profile-card a {
    text-decoration: none;
    color: inherit;
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    color: var(--white);
    background: var(--primary-green);
}

.profile-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-role {
    font-size: 16px;
    color: var(--primary-green);
    font-weight: 600;
    margin: 0;
}

/* Profile Page Styles */
.profile-section {
    padding: 120px 0 80px;
    background: var(--white);
}

.profile-header {
    max-width: 1000px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--dark-green);
}

.profile-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.profile-image-large {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-placeholder-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    font-weight: bold;
    color: var(--white);
    background: var(--primary-green);
}

.profile-info h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.profile-title {
    font-size: 24px;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 30px;
}

.profile-bio {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Request Submitted Page Styles */
.request-submitted-section {
    padding: 120px 0 80px;
    background: var(--white);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.submitted-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.submitted-icon svg {
    width: 80px;
    height: 80px;
}

.submitted-content h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.submitted-message {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 600;
}

.submitted-details {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 40px;
}

.submitted-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-green);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--primary-green);
    color: var(--black);
    transform: translateY(-2px);
}

/* About Page Styles */
.about-section {
    padding: 120px 0 80px;
    background: var(--white);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-subtitle {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 25px;
}

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

/* Forms Page Styles */
.forms-section {
    padding: 120px 0 80px;
    background: var(--white);
}

.forms-header {
    text-align: center;
    margin-bottom: 60px;
}

.forms-header h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.forms-subtitle {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 600;
}

.forms-description {
    font-size: 18px;
    color: var(--text-dark);
    max-width: 1000px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.forms-description p {
    margin: 0;
}

.forms-content {
    max-width: 1200px;
    margin: 0 auto;
}

.services-trades {
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.services-trades h2 {
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.trades-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.trades-list li {
    font-size: 18px;
    color: var(--text-dark);
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.trades-list li::before {
    content: "•";
    color: var(--primary-green);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 8px;
}

.services-additional {
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.services-additional h2 {
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.services-additional p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
}

.services-forms-link {
    text-align: center;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.forms-list {
    padding: 40px;
    background: #f8f8f8;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.forms-list h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.forms-placeholder {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.form-download-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

.form-download-link {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-green);
    color: var(--black);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 198, 65, 0.3);
}

.form-download-link:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 198, 65, 0.5);
}

/* Responsive styles for contact, profile, forms, about, and request-submitted pages */
@media (max-width: 768px) {
    .contact-section,
    .profile-section,
    .forms-section,
    .about-section,
    .request-submitted-section {
        padding: 100px 20px 60px;
    }
    
    .submitted-content h1 {
        font-size: 32px;
    }
    
    .submitted-message {
        font-size: 20px;
    }
    
    .submitted-details {
        font-size: 16px;
    }
    
    .submitted-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
    }

    .contact-header h1,
    .forms-header h1 {
        font-size: 36px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .profiles-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .profile-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .profile-image-large {
        margin: 0 auto;
    }

    .profile-info h1 {
        font-size: 32px;
    }

    .forms-list {
        padding: 30px 20px;
    }
}

