@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@700;800;900&display=swap');

:root {
    --primary-color: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #E6F0FF;
    --secondary-color: #FF6B35;
    --secondary-light: #FFE8E0;
    --text-dark: #0F172A;
    --text-medium: #475569;
    --text-light: #64748B;
    --bg-light: #ffffff;
    --bg-gray: #F8FAFC;
    --bg-gradient: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    --border-color: #E2E8F0;
    --border-light: #F1F5F9;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 10px 40px -10px rgba(0, 102, 255, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    font-size: 17px;
    letter-spacing: -0.011em;
    font-weight: 400;
}

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

.nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
}

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

.logo {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.logo:hover {
    color: var(--primary-color);
}

.logo-initials {
    display: none;
}

.logo-name {
    display: inline;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
    position: relative;
    letter-spacing: -0.011em;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

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

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

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

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

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

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

.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-links.mobile-open li a::after {
    display: none;
}

.hero {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 100%;
}

.hero-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 600;
    border-radius: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 340px;
    position: relative;
}

.hero-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    border-radius: 50%;
    opacity: 0.12;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-10px, -10px) scale(1.05);
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    position: relative;
    z-index: 1;
    border: 3px solid #ffffff;
    display: block;
}

.hero-headline {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-highlight {
    color: var(--primary-blue);
    display: inline;
}

.hero-subheadline {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 680px;
    font-weight: 400;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: -0.011em;
    border: none;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background-color: white;
    color: var(--text-dark);
    border-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background-color: var(--primary-light);
}

.btn-large {
    padding: 18px 44px;
    font-size: 18px;
    border-radius: 12px;
}


section {
    padding: 100px 0;
}

section:nth-child(even) {
    background-color: var(--bg-gray);
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.section-intro {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 56px;
    max-width: 740px;
    font-weight: 400;
}

.section-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 16px;
}

.section-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    opacity: 0.85;
    transition: var(--transition);
}

.section-image:hover {
    opacity: 1;
    transform: scale(1.02);
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.card {
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-label {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    letter-spacing: -0.015em;
}

.card-text {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.career-areas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.career-area {
    padding: 24px 0;
    border-left: 4px solid var(--primary-color);
    padding-left: 24px;
}

.area-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.area-text {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.career-closing {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    font-style: italic;
    margin-top: 20px;
}

.autonation {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.autonation-card {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    max-width: 840px;
    margin: 0 auto;
}

.autonation-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 3px solid var(--primary-color);
}

.autonation-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.autonation-subheading {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.011em;
}

.autonation-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.autonation-highlights li {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    padding: 14px 0 14px 32px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.autonation-highlights li:last-child {
    border-bottom: none;
}

.autonation-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.projects-category {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 56px;
    margin-bottom: 24px;
    letter-spacing: -0.015em;
}

.projects-category:first-of-type {
    margin-top: 0;
}

.project-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.project-card {
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.project-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.project-title {
    font-size: 23px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.project-link {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.project-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.project-link::after {
    content: "↗";
    font-size: 18px;
    opacity: 0.7;
}

.project-tagline {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.project-description {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.projects-bottom {
    font-size: 17px;
    color: var(--text-light);
    font-style: italic;
}

.principles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.principle {
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.principle:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.principle-label {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.principle-text {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.health-content {
    max-width: 750px;
}

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

.health-closing {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 32px;
    font-style: italic;
}

.life-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.life-text {
    max-width: 750px;
}

.life-text p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.family-photos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
}

.family-photos img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: var(--transition);
}

.family-photos img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.work-with-me {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052cc 100%);
    color: white;
}

.work-with-me .section-title {
    color: white;
}

.cta-intro {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    max-width: 700px;
}

.cta-content {
    max-width: 650px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
}

.work-with-me .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.work-with-me .btn-primary:hover {
    background-color: var(--bg-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 40px 0;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

@media (min-width: 768px) {
    .logo {
        font-size: 24px;
    }

    .logo:hover {
        transform: none;
        box-shadow: none;
    }

    .logo-initials {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--primary-color) 0%, #0052CC 100%);
        color: white;
        font-size: 18px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 102, 255, 0.2);
        transition: var(--transition);
    }

    .logo-initials:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
    }

    .logo-name {
        color: var(--text-dark);
        font-size: 17px;
        letter-spacing: -0.3px;
    }

    .nav-links {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero {
        padding: 140px 0 120px;
    }

    .hero-container {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }

    .hero-content {
        max-width: 600px;
    }

    .hero-image {
        max-width: 380px;
    }

    .hero-headline {
        font-size: 52px;
    }

    .hero-subheadline {
        font-size: 20px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .hero-stat-value {
        font-size: 36px;
    }

    .section-title {
        font-size: 48px;
    }

    .section-image {
        height: 320px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .career-areas {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .principles {
        grid-template-columns: repeat(2, 1fr);
    }

    .family-photos {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        gap: 100px;
    }

    .hero-content {
        max-width: 660px;
    }

    .hero-headline {
        font-size: 60px;
    }

    .hero-subheadline {
        font-size: 23px;
    }

    .hero-image {
        max-width: 420px;
    }

    .hero-stat-value {
        font-size: 40px;
    }

    .section-image {
        height: 380px;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .career-areas {
        grid-template-columns: repeat(3, 1fr);
    }

    .family-photos {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chatbot-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052CC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
    transition: var(--transition);
    z-index: 1000;
    color: white;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 102, 255, 0.5);
}

.chatbot-window {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 380px;
    height: 600px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052CC 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.chatbot-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chatbot-title p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition);
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--bg-gray);
}

.chatbot-message {
    display: flex;
    flex-direction: column;
}

.chatbot-message-user {
    align-items: flex-end;
}

.chatbot-message-assistant {
    align-items: flex-start;
}

.chatbot-message-content {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.chatbot-message-user .chatbot-message-content {
    background: var(--primary-color);
    color: white;
}

.chatbot-message-assistant .chatbot-message-content {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.chatbot-typing {
    display: flex;
    gap: 4px;
    padding: 16px;
}

.chatbot-typing span {
    width: 8px;
    height: 8px;
    background: var(--text-light);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

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

.chatbot-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

.chatbot-input-wrapper {
    padding: 16px;
    background: white;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 8px;
}

.chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.chatbot-input:focus {
    border-color: var(--primary-color);
}

.chatbot-send {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chatbot-send:hover {
    background: #0052CC;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .chatbot-window {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .chatbot-button {
        bottom: 20px;
        right: 20px;
    }
}
