/* Color Palette & General Reset */
:root {
    --primary-color: #2c3e50; /* Professional Navy */
    --secondary-color: #27ae60; /* Healing Green */
    --accent-color: #3498db; /* Trusting Blue */
    --light-bg: #f4f7f6;
    --text-color: #333;
}

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



<!-- Floating Chatbot Avatar Button -->
<a href="https://chatgpt.com/share/6a9dd068-6fa4-83e8-9248-01741cea6cbe" class="floating-chat-btn" target="_blank">
    <div class="chat-tooltip">Chat with Tom</div>
    <!-- Replace 'tom-avatar.png' with your actual image filename -->
    <img src="tom-avatar.png" alt="Tom the AI Bot">
</a>

Add to your style.css:

/* Floating Avatar Button Styles */
.floating-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.floating-chat-btn img {
    width: 100%;
    height: 100%;
    border-radius: 50%; /* Makes it a circle */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border: 3px solid var(--primary); /* Teal border from your site theme */
    background: #fff;
    object-fit: cover;
}

.floating-chat-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Tooltip that appears when you hover */
.chat-tooltip {
    position: absolute;
    top: -45px;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.floating-chat-btn:hover .chat-tooltip {
    opacity: 1;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .floating-chat-btn {
        width: 65px;
        height: 65px;
        bottom: 20px;
        right: 20px;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
}

/* Navigation */
nav {
    background: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
    font-weight: bold;
}

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

nav ul li a {
    padding: 10px 15px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    height: 70vh;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn.primary {
    background: var(--secondary-color);
    color: #fff;
}

.btn.secondary {
    background: var(--accent-color);
    color: #fff;
}

.btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Sections General */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    position: relative;
}

.section-title::after {
    content: '';
    background: var(--secondary-color);
    height: 3px;
    width: 50px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.video-card:hover {
    transform: scale(1.02);
}

.video-placeholder {
    background: #ddd;
    height: 180px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.video-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.6;
}

/* Shop Section */
.product-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.product-card {
    background: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    width: 300px;
}

.product-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

/* Resources */
.resource-list {
    list-style: none;
    max-width: 600px;
    margin: auto;
}

.resource-list li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.resource-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 { font-size: 2rem; }
    nav ul { display: none; }
}