/* Reset and Base Styles */
html {
    scroll-behavior: smooth;
}

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

:root {
    --primary-color: #ffffff;
    --secondary-color: #f5f5f5;
    --accent-color: #000000;
    --text-color: #000000;
    --background-color: #ffffff;
    --beige: #f8f8f8;
    --light-gray: #e0e0e0;
    --spacing-unit: 1rem;
    --gold: #000000;
    --dark-gold: #333333;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-color);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo a:hover {
    opacity: 0.9;
}

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--gold);
}

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

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.reserve-btn {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.8rem 1.8rem;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reserve-btn:hover {
    background-color: var(--gold);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    padding: 0 var(--spacing-unit);
    position: relative;
    z-index: 3;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    letter-spacing: 3px;
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 400;
    letter-spacing: 1px;
}

.cta-button {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    background-color: var(--gold);
    color: var(--primary-color);
}

.hero-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-logo {
        height: 100px;
        margin-bottom: 1.5rem;
    }
}

/* Introduction Section */
.intro {
    padding: 8rem 0;
    background-color: var(--background-color);
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-gray), transparent);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Packages Section */
.packages {
    padding: 8rem 0;
    background-color: var(--light-gray);
    position: relative;
}

.packages h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gold);
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.package-section {
    margin-bottom: 6rem;
}

.package-section:last-of-type {
    margin-bottom: 3rem;
}

.section-title {
    text-align: center;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 var(--spacing-unit);
    margin-bottom: 3rem;
}

.package-card {
    background-color: var(--primary-color);
    border: 1px solid var(--light-gray);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.package-card h3 {
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
}

.package-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.package-card li {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.package-note {
    text-align: center;
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Calendar Section */
.calendar {
    padding: 8rem 0;
    background-color: var(--background-color);
}

.calendar h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gold);
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.calendar-placeholder {
    background-color: var(--beige);
    padding: 4rem;
    text-align: center;
    border-radius: 0;
    border: 1px solid rgba(212, 196, 183, 0.1);
}

/* Calendar Notice */
.calendar-notice {
    background-color: var(--secondary-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--light-gray);
}

.calendar-notice p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gold);
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Mobile Gallery Styles */
@media (max-width: 768px) {
    .gallery {
        padding: 2rem 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .gallery-item {
        aspect-ratio: 1;
        border-radius: 4px;
    }

    .gallery-item img {
        object-fit: cover;
    }

    /* Add a subtle border between images */
    .gallery-item::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
        pointer-events: none;
    }
}

/* Location Section */
.location {
    padding: 8rem 0;
    background-color: var(--background-color);
}

.location h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gold);
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.map-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.map-container iframe {
    max-width: 100%;
    height: 500px;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--background-color);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-message {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-message p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.whatsapp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: #000000;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-contact-btn i {
    font-size: 1.5rem;
}

.whatsapp-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.whatsapp-contact-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .contact-message p {
        font-size: 1.1rem;
    }
    
    .whatsapp-contact-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Language Selector */
.language-selector {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    display: flex;
    gap: 2px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3px;
    border-radius: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-color);
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 25px;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.lang-btn.active {
    background-color: var(--text-color);
    color: var(--primary-color);
    font-weight: 600;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #000000;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.whatsapp-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid var(--light-gray);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-gray), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo h3 {
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social .social-icon {
    color: var(--text-color);
    font-size: 1.2rem;
}

.footer-social .social-icon:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 196, 183, 0.1);
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--gold);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header and Navigation */
    header {
        padding: 1rem;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }

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

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        padding: 0;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

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

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    nav ul li a {
        font-size: 1.1rem;
        padding: 1rem 0;
        display: block;
        color: #333;
        transition: color 0.3s ease;
    }

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

    /* Menu Overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Hide desktop elements in mobile */
    .desktop-only {
        display: none;
    }

    /* Show mobile elements */
    .mobile-only {
        display: block;
    }

    /* Hero Section */
    .hero {
        padding: 8rem 1rem 4rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .about-text {
        width: 100%;
        padding: 0;
    }

    .about-image {
        width: 100%;
        height: 300px;
    }

    /* Classes Section */
    .classes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .class-card {
        margin: 0;
        transform: none;
        transition: transform 0.3s ease;
    }

    .class-card:hover {
        transform: translateY(-5px);
    }

    /* Schedule Section */
    .schedule-container {
        padding: 2rem 1rem;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .schedule-card {
        padding: 1.5rem;
    }

    /* Location Section */
    .map-container {
        padding: 0;
        margin: 0;
    }

    .map-container iframe {
        height: 400px;
        width: 100%;
    }

    /* Contact Section */
    .contact-container {
        padding: 2rem 1rem;
    }

    .contact-form {
        width: 100%;
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }

    /* Footer */
    footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Language Toggle */
    .language-toggle {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background: white;
        padding: 0.5rem;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 70px;
    }

    /* Enhanced touch targets */
    button, 
    .btn, 
    a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Better spacing for mobile */
    section {
        padding: 3rem 1rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    /* Improved card layouts */
    .card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Better form elements */
    input, 
    textarea, 
    select {
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }

    /* Gallery */
    .gallery {
        padding: 2rem 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .gallery-item {
        aspect-ratio: 1;
        border-radius: 4px;
    }

    .gallery-item img {
        object-fit: cover;
    }

    /* Add a subtle border between images */
    .gallery-item::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
        pointer-events: none;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .main-nav {
        display: flex;
        align-items: center;
    }

    .main-nav ul {
        display: flex;
        list-style: none;
        gap: 3rem;
    }

    .main-nav a {
        text-decoration: none;
        color: var(--text-color);
        font-weight: 400;
        font-size: 0.95rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        position: relative;
    }

    .main-nav a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: -4px;
        left: 0;
        background-color: var(--gold);
        transition: width 0.3s ease;
    }

    .main-nav a:hover {
        color: var(--gold);
    }

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

    .desktop-only {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.intro-text,
.package-card,
.gallery-item {
    animation: fadeIn 1s ease-out;
}

/* Desktop Only Elements */
.desktop-only {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
    .header-container > .social-icons,
    .header-container > .reserve-btn {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
    .desktop-only {
        display: flex !important;
    }
}

/* Calendly Section */
.calendly-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.calendly-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.calendly-inline-widget {
    min-height: 700px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Calendly Styles */
@media (max-width: 768px) {
    .calendly-section {
        padding: 2rem 0;
    }

    .calendly-container {
        padding: 0 0.5rem;
    }

    .calendly-inline-widget {
        min-height: 600px;
        border-radius: 4px;
    }

    /* Adjust Calendly widget for mobile */
    .calendly-inline-widget iframe {
        width: 100% !important;
        height: 100% !important;
        min-height: 600px !important;
    }

    /* Improve touch targets for Calendly buttons */
    .calendly-inline-widget button,
    .calendly-inline-widget a {
        min-height: 44px;
        padding: 12px 20px;
    }

    /* Better spacing for Calendly content */
    .calendly-inline-widget .calendly-event-details {
        padding: 1rem;
    }

    /* Improve text readability */
    .calendly-inline-widget {
        font-size: 14px;
        line-height: 1.5;
    }
} 