:root {
    --lavender: #e6d1f7;
    --pink: #ffd6e8;
    --sky: #d1f0ff;
    --gold: #f9e076;
    --text-dark: #5a4a66;
}

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

body {
    font-family: 'Quicksand', sans-serif;
    background-color: white;
    color: var(--text-dark);
    line-height: 1.6;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    position: relative;
    z-index: 10;
}
.logo img {
    height: 40px;
}
.header-icons .icon {
    margin-left: 16px;
    font-size: 20px;
}

.hero {
    position: relative;
    padding: 20px;
    text-align: center;
    background: linear-gradient(to bottom, var(--lavender), white);
    overflow: hidden;
}
.hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #6a4c93;
}
.hero p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #7a6a8a;
}
.cta-button {
    background: var(--gold);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    color: #5a4a66;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.hero-image img {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
    border-radius: 20px;
}

.bubbles, .shells {
    position: absolute;
    pointer-events: none;
}
.bubbles {
    top: 20%;
    right: 10%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="5" fill="%23d1f0ff" opacity="0.6"/><circle cx="60" cy="40" r="3" fill="%23f9e076" opacity="0.5"/><circle cx="80" cy="70" r="7" fill="%23ffd6e8" opacity="0.4"/></svg>') no-repeat;
    width: 100px;
    height: 100px;
}
.shells {
    bottom: 10%;
    left: 5%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M10,25 Q15,10 25,15 Q35,20 40,10" stroke="%23e6d1f7" fill="none" stroke-width="2"/><path d="M15,30 Q20,15 30,20 Q40,25 45,15" stroke="%23d1f0ff" fill="none" stroke-width="1.5"/></svg>') no-repeat;
    width: 80px;
    height: 80px;
}

.categories {
    padding: 40px 20px;
    background-color: var(--pink);
}
.categories h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}
.category-grid {
    display: grid;
    gap: 20px;
}
.category-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.category-card img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}
.view-btn {
    background: var(--sky);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
}

.advantages {
    padding: 40px 20px;
    background: var(--sky);
}
.advantages h2 {
    text-align: center;
    margin-bottom: 30px;
}
.advantages-grid {
    display: grid;
    gap: 20px;
}
.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.advantage-item .icon {
    font-size: 24px;
    min-width: 30px;
}

@media (min-width: 768px) {
    .hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    .hero-text { flex: 1; padding-right: 20px; }
    .hero-image { flex: 1; }
}