.services-section {
    padding: 64px 0 32px 0;
    background: #fff;
    text-align: center;
}
.services-header h4 {
    color: #888;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.services-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 48px;
}
.services-header .highlight {
    color: #d88be6;
}
.services-list {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.service-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(216,139,230,0.08);
    padding: 32px 24px 40px 24px;
    width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}
.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    object-fit: contain;
}
.service-item h3 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.service-item p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .services-list {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }
    .service-item {
        width: 90%;
        margin-bottom: 32px;
    }
}
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 48px 32px 48px;
    background: linear-gradient(90deg, #B541FB 40%, #76F6F5 100%);
    border-radius: 0 0 50px 50px / 0 0 50px 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.navbar-logo {
    display: flex;
    align-items: center;
}
.logo-box {
    background: #fff;
    color: #d88be6;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 3px 3px;
    border-radius: 10px;
    margin-right: 8px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.navbar-links {
    display: flex;
    gap: 48px;
}
.navbar-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    transition: color 0.2s;
}
.navbar-links a:hover {
    color: #f7c6a4;
}
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    .navbar-links {
        gap: 24px;
        margin-top: 16px;
    }
}
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 0 12px;
    min-height: 22vh;
    position: relative;
}
.hero-content {
    max-width: 600px;
}
.hero-welcome {
    display: inline-block;
    background: #d88be6;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 24px;
}
.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 24px 0 32px 0;
}
.highlight {
    color: #B541FB;
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 0 4px 16px rgba(181,65,251,0.18);
}
.hero-btn {
    display: inline-block;
    background: linear-gradient(90deg, #f7c6a4 0%, #d88be6 100%);
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(216,139,230,0.12);
    margin-top: 24px;
    transition: background 0.2s;
}
.hero-btn:hover {
    background: linear-gradient(90deg, #d88be6 0%, #f7c6a4 100%);
}
.hero-image {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -40px;
}
.main-hero-img {
    position: relative;
    width: 520px;
    z-index: 2;
}
.hero-bg-shape {
    position: absolute;
    left: 40px;
    top: 40px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 60% 40%, #d88be6 0%, #f7c6a4 100%);
    opacity: 0.3;
    border-radius: 32% 68% 60% 40% / 40% 60% 32% 68%;
    z-index: 1;
}
@media (max-width: 1100px) {
    .hero-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 48px 24px 0 24px;
    }
    .hero-image {
        width: 100%;
        height: 320px;
        margin-top: 32px;
    }
    .main-hero-img {
        width: 220px;
    }
    .hero-bg-shape {
        width: 220px;
        height: 220px;
        left: 0;
        top: 0;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
}
.site-footer {
    background: linear-gradient(90deg, #80E5EF 0%, #B262FD 100%);
    padding: 18px 0 10px 0;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 64px;
}
.footer-social {
    margin-bottom: 24px;
}
.footer-social a {
    display: inline-block;
    margin: 0 16px;
    background: #fff;
    color: #d88be6;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    line-height: 56px;
    font-size: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(216,139,230,0.10);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.footer-social a:hover {
    background: #d88be6;
    color: #fff;
}
.footer-icon-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(216,139,230,0.10);
    transition: background 0.2s;
    object-fit: cover;
}
.footer-social a:hover .footer-icon-img {
    background: #d88be6;
}
.footer-text p {
    margin: 4px 0;
    font-size: 0.95rem;
}
