/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    font-family: "Lato", sans-serif;
    line-height: 1.6;
    color: #a1a6b2;
}

a {
    text-decoration: none;
}


/* Grid layout */
.grid-container {
    display: grid;
    grid-template-areas:
    'header'
    'main'
    'main2'
    'footer';
    min-height: 100vh;
}

/* Header styles */
.header {
    grid-area: header;
    background-color: #2D343D;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

}

.logo {
    max-height: 155px;
    max-width: 190px;
    margin-left: 150px;
}

/* Navigation */
.topnav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.topnav a, .dropbin {
    padding: 1rem;
    color: #a1a6b2;
    font-family: "open-sans", sans-serif;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.dropbin {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Dropdown menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2D343D;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 10;
    border-radius: 4px;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    text-align: left;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.topnav a:hover, .dropbin:hover, .dropdown-content a:hover {
    background-color: #a1a6b2;
    color: #2D343D;
}

.topnav a.active {
    color: white;
}

/* Main content - Slideshow */
.row1 {
    grid-area: main;
    position: relative;
    overflow: hidden;
}

.slides {
    position: relative;
    height: 100%;
}

.slideshow {
    width: 100%;
    height: 100%;
}

.homes {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    display: block;
}

.gradient {
    height: 100%;
    width: 100%;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.66) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.headline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    font-family: "Lucida Sans", sans-serif;
    font-size: 1.5rem;
    color: white;
    text-align: center;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

/* Features section */
.row2 {
    grid-area: main2;
    background-color: #f5f5f5;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title2 {
    color: #2c2c2c;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.3;
    text-align: center;
    max-width: 800px;
    margin-bottom: 2rem;
}

.description {
    font-family: "Lucida Sans", sans-serif;
    font-size: 1.2rem;
    text-align: center;
    max-width: 1000px;
    margin-bottom: 3rem;
    color: #666;
}

.images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.tile1 {
    background-color: white;
    text-align: center;
    border-top: #795548 9px solid;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 2rem;
}

.tile1:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.imgtech {
    margin: 2rem 0;
    border-radius: 50%;
    background-color: #f5f5f5;
    padding: 1rem;
}

.tiletitle {
    font-family: "Lato", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
    color: #333;
}

.tiletext {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    padding: 0 1.5rem;
    color: #666;
}


/* Footer */
.footer {
    grid-area: footer;
    background-color: #2D343D;
    color: #a1a6b2;
    padding: 2rem;
    text-align: center;
}

.footer p {
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a1a6b2;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}


/* About page specific styles */

/* Active navigation */
.topnav a.active {
    color: white;
}

/* About banner */
.about-banner {
    grid-area: main;
    position: relative;
    overflow: hidden;
    height: 50vh;
    min-height: 300px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient {
    height: 100%;
    width: 100%;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.66) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.headline {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
}

.headline h1 {
    color: white;
    font-size: 4rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: left;
    padding-left: 10%;
    margin-left: 50px;
}

/* About content */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 2rem auto;
}

/* About sections */
.about-section {
    margin: 1.5rem 0;
    text-align: left;
    width: 100%;
}

.about-section h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #795548;
}

.about-section p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Values section */
.about-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 3rem;
    width: 100%;
    gap: 2rem;
}

.value-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 280px;
    flex: 1 1 280px;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.value-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.value-item h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.value-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Additional custom styles */
.abouthref {
    margin-left: 150px;
    vertical-align: middle;
}

/* Responsive adjustments for custom styles */
@media (max-width: 768px) {
    .abouthref {
        margin-left: 0;
    }

    .headline h1 {
        font-size: 3rem;
        padding-left: 5%;
    }
}

@media (max-width: 576px) {
    .about-banner {
        height: 40vh;
    }

    .headline h1 {
        font-size: 2.5rem;
    }

    .about-section h3 {
        font-size: 1.3rem;
    }

    .about-section p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-banner {
        height: 30vh;
    }

    .headline h1 {
        font-size: 2rem;
    }

    .about-values {
        flex-direction: column;
        align-items: center;
    }

    .value-item {
        max-width: 100%;
    }
}

/* Criteria page */
.abouttitle {
    color: white;
    font-size: 4rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: left;
    padding-left: 10%;
    margin-left: 50px;

}
.footer {
    grid-area: footer;
    background-color: #dddddd;
    padding: 0;
    margin: 0;
    text-align: center;
    justify-content: center;
}
.clipb {
    margin-top: 60px;
    margin-left: 200px;
}
.clipheadline {
    position: absolute;
    z-index: 100;
    text-align: center;
    justify-self: center;

}
.clipboardtxt1 {
    position: absolute;
    top: 400px;
    left: 400px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    width: 58%;
    margin: 20px;
    color: black;
    text-align: left;
}
.clipboardtxt2 {
    position: absolute;
    top: 500px;
    left: 400px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    width: 58%;
    margin: 20px;
    color: black;
    text-align: left;
}
.clipboardtxt3 {
    position: absolute;
    top: 600px;
    left: 400px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    width: 58%;
    margin: 20px;
    color: black;
    text-align: left;
}
.clipboardtxt4 {
    position: absolute;
    top: 940px;
    left: 400px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    width: 58%;
    margin: 20px;
    color: black;
    text-align: left;
}
.clipboardtxt5 {
    position: absolute;
    top: 1110px;
    left: 400px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    width: 58%;
    margin: 20px;
    color: black;
    text-align: left;
}
.clipboardtxt6 {
    position: absolute;
    top: 1170px;
    left: 400px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    width: 58%;
    margin: 20px;
    color: black;
    text-align: left;
}
.clipboardtxt7 {
    position: absolute;
    top: 1260px;
    left: 400px;
    font-family: "Lato",sans-serif;
    font-size: 14px;
    width: 58%;
    margin: 20px;
    color: black;
    text-align: left;
}
.clipboardtxt8 {
    position: absolute;
    top: 1360px;
    left: 400px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    width: 58%;
    margin: 20px;
    color: black;
    text-align: left;
}

/*Properties page */
/* Properties page specific styles */

/* Active navigation */
.topnav a.active {
    color: white;
}

/* Properties container */
.properties-container {
    grid-area: footer;
    background-color: #f5f5f5;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

/* Property cards */
.property-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Property images */
.property-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

/* Property content */
.property-content {
    padding: 2rem;
}

.property-location {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.property-location:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #795548;
}

.property-section-title {
    color: #333;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

/* Property info list */
.property-info-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.property-info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.property-info-list li:last-child {
    border-bottom: none;
}

/* Property description */
.property-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
}

/* Responsive styles */
@media (min-width: 768px) {
    .property-card {
        flex-direction: row;
    }

    .property-image {
        flex: 0 0 40%;
        height: auto;
    }
}

@media (max-width: 767px) {
    .property-image {
        height: 250px;
    }

    .property-location {
        font-size: 1.8rem;
    }

    .property-section-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .properties-container {
        padding: 2rem 1rem;
    }

    .property-content {
        padding: 1.5rem;
    }

    .property-location {
        font-size: 1.5rem;
    }
}

/*index page */


/* Banner section */
.portal-banner {
    grid-area: main;
    position: relative;
    overflow: hidden;
    height: 60vh;
    min-height: 400px;
}

.portal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient {
    height: 100%;
    width: 100%;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.66) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.headline {
    position: absolute;
    top: 30%;
    left: 30%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: left;
    width: 100%;
    max-width: 800px;
}

.headline h1 {
    color: white;
    font-size: 3rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Login Form */
.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    background-color: transparent;
    border: 2px solid white;
    border-radius: 10px;
    padding: 2rem;
    width: 90%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.login-box h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-family: 'Lato', sans-serif;
}

.input-group {
    margin-bottom: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

input {
    padding: 0.8rem;
    border-radius: 6px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.3s;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

input:focus {
    outline: none;
    border-color: #46b8da;
    box-shadow: 0 0 0 2px rgba(70, 184, 218, 0.25);
}

/* Checkbox and options */
.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
    color: white;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.forgot-password {
    text-decoration: none;
    color: #46b8da;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #fff;
    text-decoration: underline;
}

/* Button */
button {
    background: #46b8da;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s;
}

button:hover {
    background: #3a9cc5;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

/* Portal features */
.portal-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
    max-width: 1200px;
}

.feature-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.support-info {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #666;
}

.email-link {
    color: #46b8da;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.email-link:hover {
    color: #333;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .headline h1 {
        font-size: 2.5rem;
    }

    .login-box {
        padding: 1.5rem;
        transform: translate(-50%, -45%);
    }
}

@media (max-width: 576px) {
    .portal-banner {
        height: 70vh;
    }

    .headline h1 {
        font-size: 2rem;
    }

    .login-box {
        width: 95%;
        max-width: 320px;
        padding: 1.2rem;
    }

    .options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .forgot-password {
        margin-left: 0;
    }

    .feature-item {
        max-width: 100%;
    }
}

/* Assistant page */

/* Active navigation */
.dropdown-content a.active {
    color: white;
}

/* Assistant container */
.assistant-container {
    grid-area: main;
    background-color: black;
    padding: 3rem 2rem;
    min-height: 80vh;
}

.assistant-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2.5rem; /* Increased gap for better spacing */
    height: 100%;
    align-items: flex-start; /* Align items to the top */
}
/* AI Assistant - Increase Size */
.assistant-column {
    flex: 0 0 450px; /* Increased from 350px */
}

.vanessa-avatar {
    width: 160px; /* Increased from 120px */
    height: 160px; /* Increased from 120px */
    border-radius: 80px; /* Increased from 60px */
}

.vanessa-title {
    font-size: 1.8rem; /* Increased from 1.5rem */
}

.vanessa-subtitle {
    font-size: 1.2rem; /* Increased from 1rem */
}

.vanessa-chat {
    height: 350px; /* Increased from 300px */
}

/* Logout Button - Steel Blue with rounded corners */
.logout-btn {
    background-color: #4682B4; /* Steel Blue */
    color: white;
    padding: 0.4rem 0.8rem; /* Smaller padding */
    border: none;
    border-radius: 20px; /* More rounded corners */
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.9rem; /* Smaller font */
}

.logout-btn:hover {
    background-color: #36648B; /* Darker Steel Blue on hover */
}

/* Inspection Item Layout Update */
.inspection-item {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.inspection-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
}

.inspection-date-status {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.5rem;
}

.inspection-details-btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* Main content area */
.assistant-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.assistant-header {
    margin-bottom: 1rem;
}

.assistant-description {
    font-size: 1.1rem;
    color: #46b8da;
    line-height: 1.6;
    margin: 0;
}

/* Chat interface - now more prominent */
.chat-container {
    order: 1;
    margin-bottom: 2rem;
    margin-top: 0;
}

.chat-box {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 100%;
}

.chat-messages {
    height: 450px; /* Increased height to better align with Vanessa's image */
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fafafa;
}

.message {
    padding: 0.8rem 1.2rem;
    border-radius: 18px;
    max-width: 80%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.message p {
    margin: 0;
    line-height: 1.4;
}

.assistant-message {
    align-self: flex-start;
    background-color: #f0f0f0;
    color: #333;
    border-bottom-left-radius: 4px;
}

.user-message {
    align-self: flex-end;
    background-color: #46b8da;
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-input {
    display: flex;
    border-top: 1px solid #eee;
    padding: 1rem;
    align-items: center;
    background-color: black;
}

.chat-input input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
    font-size: 1rem;
    min-width: 0;
    width: 85%;
}

.chat-input input:focus {
    border-color: #46b8da;
    box-shadow: 0 0 0 2px rgba(70, 184, 218, 0.2);
}

.chat-input button {
    background-color: #46b8da;
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 30px;
    margin-left: 0.8rem;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 0.9rem;
    width: auto;
    white-space: nowrap;
}

.chat-input button:hover {
    background-color: #3a9cc5;
}

/* Features - now below chat */
.assistant-features {
    order: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature {
    flex: 1 1 250px;
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature h3 {
    color: #46b8da;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Typing indicator */
.typing-indicator {
    padding: 0.6rem 1.2rem;
}

.typing-dots {
    display: flex;
    align-items: center;
    height: 20px;
}

.typing-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #999;
    border-radius: 50%;
    margin: 0 2px;
    animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing-bounce {
    0%, 80%, 100% {
        transform: scale(0.6);
    }
    40% {
        transform: scale(1);
    }
}

/* Additional custom styles */
.abouthref {
    margin-left: 150px;
    vertical-align: middle;
}

/* Responsive design */
@media (max-width: 1024px) {
    .assistant-sidebar {
        flex: 0 0 300px; /* Adjusted for medium screens */
    }

    .chat-messages {
        height: 400px;
    }
}

/* Vendor Page */
.vendor-container {
    grid-area: main2;
    background-color: #f5f5f5;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Apply button */
.apply-btn {
    background-color: #795548;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    display: inline-block;
    text-decoration: none;
}

.apply-btn:hover {
    background-color: #5d4037;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Testimonial section */
.testimonial {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin: 2rem 0;
    width: 100%;
    max-width: 800px;
    position: relative;
}

.testimonial:before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    left: 1rem;
    top: -1rem;
    color: #795548;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: #333;
    display: block;
    text-align: right;
    margin-top: 1rem;
}

/* FAQ accordion */
.faq-item {
    margin-bottom: 1.5rem;
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-question {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #795548;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    display: none;
    color: #666;
    line-height: 1.5;
    padding-top: 0.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Process steps */
.process-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
    width: 100%;
    max-width: 1200px;
}

.process-step {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.step-number {
    background-color: #795548;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

/* Vendor types */
.vendor-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem auto;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.vendor-type {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    transition: all 0.3s ease;
}

.vendor-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.vendor-type-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    object-fit: contain;
}

/* Benefits grid */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem auto;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
}

.benefit-item {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    width: 300px;
    margin: 0 auto;
}

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

.benefit-title {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.benefit-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #795548;
}

/* Vendor form */
.vendor-form {
    max-width: 800px;
    width: 100%;
    margin: 2rem auto;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.form-label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    color: #333;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-list, .vendor-types {
        flex-direction: column;
        align-items: center;
    }

    .process-step, .vendor-type {
        max-width: 100%;
    }

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

/* Add a note about Google Reviews */
.reviews-note {
    background-color: #f0f7ff;
    border-left: 4px solid #46b8da;
    padding: 1rem;
    margin: 2rem 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
    border-radius: 0 4px 4px 0;
    max-width: 800px;
    width: 100%;
}

/* Add these styles to your existing CSS file */

/* Style for download links */
.chat-messages a[download] {
    display: inline-block;
    background-color: #4a90e2;
    color: white;
    padding: 8px 15px;
    margin: 5px 0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.chat-messages a[download]:hover {
    background-color: #3a7bc8;
    text-decoration: none;
}

.chat-messages a[download]:active {
    background-color: #2a6cb8;
}

/* Style for system messages (download notifications) */
.message.system-message {
    background-color: #f8f8f8;
    border-left: 4px solid #ffcc00;
    font-style: italic;
    margin: 5px 10px;
}

.message.system-message p {
    color: #666;
}

/* Make download links stand out with an icon */
.chat-messages a[download]::before {
    content: "📄 ";
}


/* Responsive design */
@media (max-width: 1024px) {
    .header {
        padding: 1rem;
        justify-content: center;
    }

    .topnav {
        margin: 1rem 0 0 0;
        justify-content: center;
    }

    .headline {
        font-size: 1.3rem;
    }

    .title2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
    }

    .topnav {
        width: 100%;
        justify-content: space-around;
    }

    .homes {
        height: 50vh;
    }

    .headline {
        font-size: 1.1rem;
        width: 90%;
    }

    .title2 {
        font-size: 1.8rem;
    }

    .description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .topnav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .dropdown-content {
        position: static;
        width: 100%;
    }

    .homes {
        height: 40vh;
    }

    .headline {
        font-size: 1rem;
    }

    .title2 {
        font-size: 1.5rem;
    }

    .images {
        gap: 3rem;
    }
}



@media (max-width: 768px) {
    .assistant-content {
        flex-direction: column;
    }
    .assistant-sidebar {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .assistant-image {
        margin: 0 auto;
    }

    .assistant-title {
        width: 100%;
        text-align: center;
        margin-top: 15px;
        margin-bottom: 5px;
    }

    .assistant-role {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .abouthref {
        margin-left: 0;
    }

    .chat-messages {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .assistant-container {
        padding: 2rem 1rem;
    }

    .assistant-sidebar {
        flex-direction: column;
        margin-bottom: 1.5rem;
    }

    .assistant-image {
        width: 195px; /* 150px * 1.3 = 195px */
    }

    .chat-messages {
        height: 250px;
    }

    .assistant-features {
        flex-direction: column;
    }

    .feature {
        flex: 1 1 auto;
    }

    .chat-input {
        flex-direction: row;
        align-items: center;
    }

    .chat-input input {
        width: 75%;
    }

    .chat-input button {
        width: auto;
        margin-left: 0.5rem;
        padding: 0.6rem 0.8rem;
    }
}


