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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: linear-gradient(135deg, #fefefe 0%, #f8f6ff 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(147, 51, 153, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: #2c2c2c;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(138, 43, 226, 0.08);
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 300;
    color: #8a2be2;
    letter-spacing: 2px;
}

.logo-svg {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.logo-svg:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #6c6c6c;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #8a2be2;
    transform: translateY(-1px);
}

main {
    margin-top: 100px;
    padding: 3rem 0;
}

.hero {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 246, 255, 0.8));
    margin: 3rem 0;
    position: relative;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #da70d6, #8a2be2, #4b0082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.8);
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #6c6c6c;
    font-style: italic;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #8a2be2;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.2);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
    background: #9c27b0;
}

.sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.section-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.1);
    position: relative;
    margin-bottom: 2rem;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #da70d6, #8a2be2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-card:hover::before {
    opacity: 1;
}

.section-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.12);
    border-color: rgba(138, 43, 226, 0.2);
}

.section-card h2 {
    color: #8a2be2;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-card p {
    color: #5c5c5c;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

footer {
    background: #f8f6ff;
    color: #6c6c6c;
    text-align: center;
    padding: 3rem 0;
    margin-top: 6rem;
    border-top: 1px solid rgba(138, 43, 226, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.social-links a {
    color: #8a2be2;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
}

.social-links a:hover {
    color: #8a2be2;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .sections {
        grid-template-columns: 1fr;
    }
}

.flower-accent {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3), rgba(75, 0, 130, 0.2), transparent);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.flower-1 { top: 10%; left: 10%; }
.flower-2 { top: 60%; right: 15%; }
.flower-3 { bottom: 20%; left: 20%; }

.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a0033, #2d004d, #4b0082);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #da70d6;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(218, 112, 214, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.image-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
    border-color: rgba(218, 112, 214, 0.6);
}

.hero-visual {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(218, 112, 214, 0.8), rgba(138, 43, 226, 0.6));
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

.decorative-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, #8a2be2, #da70d6, #8a2be2, transparent);
    margin: 2rem 0;
    border-radius: 2px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(138, 43, 226, 0.5); }
    to { box-shadow: 0 0 20px rgba(138, 43, 226, 0.8); }
}

.visual-accent {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8a2be2, #da70d6);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.visual-accent:nth-child(1) { top: 15%; right: 10%; animation-delay: 0s; }
.visual-accent:nth-child(2) { bottom: 25%; left: 15%; animation-delay: 2s; }
.visual-accent:nth-child(3) { top: 60%; right: 20%; animation-delay: 4s; }

.svg-illustration {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.svg-illustration svg {
    width: 180px;
    height: 180px;
    filter: drop-shadow(0 10px 20px rgba(138, 43, 226, 0.3));
    transition: all 0.3s ease;
}

.svg-illustration:hover svg {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 15px 30px rgba(138, 43, 226, 0.5));
}

/* Clean, minimal design */