* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img,
video,
iframe,
svg {
    max-width: 100%;
    height: auto;
}

:root {
    --turquoise: #3ddad7;
    --coral: #ff8b8b;
    --white: #ffffff;
    --deep-turquoise: #2a9d9a;
    --light-turquoise: #7ee3e1;
    --sand: #f5f1e8;
    --text-gray: #4a5568;
    --shadow: rgba(61, 218, 215, 0.2);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Baloo 2', sans-serif;
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfd 100%);
    padding-top: 0;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    color: var(--turquoise);
    font-weight: 700;
}

p {
    font-family: 'Baloo 2', sans-serif;
}

/* Smooth scroll animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.scroll-animate {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Wave divider */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 60px;
}

.wave-divider .shape-fill {
    fill: var(--turquoise);
}

.wave-divider-bottom {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider-bottom svg {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 60px;
}

.wave-divider-bottom .shape-fill {
    fill: var(--turquoise);
}

/* Button styles */
.btn-primary {
    background: var(--coral);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 2rem;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 139, 139, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 139, 139, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: 2rem;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: white;
    color: var(--turquoise);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Section spacing */
section {
    padding: 5rem 2rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 1rem;
    }
}

