body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-image: url('../images/landscape.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

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

header {
    background: #ffffff;
    color: #333;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

.logo {
    float: left;
}

.logo img {
    height: 60px;
    width: auto;
}

nav {
    float: right;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
}

.content-box {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 40px;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero-section .content-box {
    background-color: rgba(0, 34, 68, 0.8);
    color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.massive-headline {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.hero-section h2 {
    color: #fff;
    font-size: 1.5rem;
}

h1, h2, h3, h4 {
    color: #333;
}

.highlight {
    color: #ff7f50;
}

.appointment-section {
    margin-top: 40px;
    text-align: left; /* Aligns the text to the left */
}

.appointment-section p {
    margin-bottom: 20px; /* Adds space between the text and the button */
}

.appointment-section .primary-btn {
    display: block;
    width: fit-content;
    margin: 0 auto; /* Centers the button */
}

.primary-btn {
    padding: 15px 30px;
    background-color: #ff7f50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.primary-btn:hover {
    background-color: #ff6347;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .appointment-section {
        margin-top: 30px;
    }

    .appointment-section p {
        margin-bottom: 15px;
    }

    .primary-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

section {
    padding: 80px 0;
}

.founders {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.founder {
    flex: 0 0 48%;
    margin-bottom: 20px;
}

.founder img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.social-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

.social-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .logo img {
        height: 40px;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 0;
        margin: 0;
    }

    nav ul.show {
        display: block;
    }

    nav ul li {
        margin: 0;
        padding: 10px 0;
    }

    nav ul li a {
        display: block;
        padding: 10px 0;
    }

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

    .hero-section h2 {
        font-size: 1.2rem;
    }

    .founder {
        flex: 0 0 100%;
    }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
    nav ul li:last-child {
        margin-right: 20px;
    }
}

:root {
    --chat--color-primary: #e57333; /* Adjusted for closer orange tone to the accent on main site */
    --chat--color-primary-shade-50: #d0652e; /* Slightly darker shade of primary */
    --chat--color-primary-shade-100: #b65528; /* Further darkened for depth */
    --chat--color-secondary: #1e4269; /* Dark blue to align with main site header */
    --chat--color-secondary-shade-50: #193957;
    --chat--color-white: #ffffff; /* Keep white for clean contrast */
    --chat--color-light: #f1f3f8; /* Background light tone */
    --chat--color-light-shade-50: #e5e8ef;
    --chat--color-light-shade-100: #c9ccd3;
    --chat--color-medium: #d0d4db; /* Medium grey, slightly adjusted */
    --chat--color-dark: #1c2638; /* Dark blue, for closer match to main background overlay */
    --chat--color-disabled: #6b6d74; /* Muted grey, ideal for disabled components */
    --chat--color-typing: #383a42; /* Darker grey for text areas and contrast */

    --chat--spacing: 1rem;
    --chat--border-radius: 0.25rem;
    --chat--transition-duration: 0.15s;

    --chat--window--width: 1000px;
    --chat--window--height: 600px;

    --chat--header-height: auto;
    --chat--header--padding: var(--chat--spacing);
    --chat--header--background: var(--chat--color-dark);
    --chat--header--color: var(--chat--color-light);
    --chat--header--border-top: none;
    --chat--header--border-bottom: none;
    --chat--header--border-bottom: none;
    --chat--header--border-bottom: none;
    --chat--heading--font-size: 1em;
    --chat--header--color: var(--chat--color-light);
    --chat--subtitle--font-size: inherit;
    --chat--subtitle--line-height: 1.8;

    --chat--textarea--height: 50px;

    --chat--message--font-size: .7rem;
    --chat--message--padding: var(--chat--spacing);
    --chat--message--border-radius: var(--chat--border-radius);
    --chat--message-line-height: 1.8;
    --chat--message--bot--background: var(--chat--color-white);
    --chat--message--bot--color: var(--chat--color-dark);
    --chat--message--bot--border: none;
    --chat--message--user--background: var(--chat--color-secondary);
    --chat--message--user--color: var(--chat--color-white);
    --chat--message--user--border: none;
    --chat--message--pre--background: rgba(0, 0, 0, 0.05);

    --chat--toggle--background: var(--chat--color-primary);
    --chat--toggle--hover--background: var(--chat--color-primary-shade-50);
    --chat--toggle--active--background: var(--chat--color-primary-shade-100);
    --chat--toggle--color: var(--chat--color-white);
    --chat--toggle--size: 64px;
}

/* Chat window background */
.chat-window {
    background-color: var(--chat-bg-color) !important;
    color: var(--chat-text-color) !important;
}

.user-message {
    background-color: var(--user-msg-bg-color) !important;
    color: var(--chat-text-color) !important;
    border-radius: var(--chat--border-radius) !important;
    padding: 10px !important;
    margin-bottom: 8px !important;
}

.bot-message {
    background-color: var(--bot-msg-bg-color) !important;
    color: var(--chat-text-color) !important;
    border-radius: var(--chat--border-radius) !important;
    padding: 10px !important;
    margin-bottom: 8px !important;
}

.chat-window, .message-container {
    border: 1px solid var(--chat-border-color) !important;
}

.chat-button {
    background-color: var(--chat--toggle--background) !important;
    color: var(--chat--toggle--color) !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 8px 12px !important;
}

.chat-button:hover {
    background-color: var(--chat--toggle--hover--background) !important;
}

.chat-link {
    color: var(--chat--toggle--background) !important;
    text-decoration: none !important;
}

.chat-link:hover {
    text-decoration: underline !important;
}

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

.tool-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tool-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

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

.tool-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .tool-item {
        padding: 1.5rem;
    }
}

.tool-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}
