:root {
    --color-fresh: #00acc1;
    --color-text: #333;
    --color-bg: #f9f9f9;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    background-color: #fff;
    line-height: 1.6;
}

.hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f0fbfc 0%, #ffffff 100%);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    color: #555;
    font-weight: 300;
}

.badge {
    display: inline-block;
    background: var(--color-fresh);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.iframe-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0px 0px rgba(0,0,0,0.05);
    background: white;
    border: 0px solid #eee;
    margin-bottom: 60px;
}

iframe {
    width: 100%;
    border: none;
    display: block;
}

.chat-section {
    background-color: #f4f4f4;
    padding: 60px 0;
}

footer {
    text-align: center;
    padding: 40px;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1.1rem; }
}
