.elementor-988383 .elementor-element.elementor-element-9f801ec{--display:flex;}/* Start custom CSS for container, class: .elementor-element-9f801ec */```html
<!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Çocuğum Çok Hızlı mı Büyüyor? | Beylikdüzü Anaokulu Rehberi</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Comic Sans MS', 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #a8edea 100%);
            padding: 20px;
            min-height: 100vh;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            animation: slideIn 1s ease-out;
        }
        
        @keyframes slideIn {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .header {
            background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
            background-size: 400% 400%;
            animation: rainbow 3s ease infinite;
            color: white;
            text-align: center;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
        }
        
        @keyframes rainbow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .header h2 {
            font-size: 1.3em;
            opacity: 0.95;
        }
        
        .section {
            padding: 40px 30px;
            margin: 0 20px;
            background: white;
            border-radius: 20px;
            margin-bottom: 30px;
            position: relative;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .section:nth-child(odd) {
            animation-delay: 0.1s;
        }
        
        .section:nth-child(even) {
            animation-delay: 0.2s;
        }
        
        @keyframes fadeInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .section-title {
            font-size: 2em;
            color: #ff6b6b;
            margin-bottom: 25px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, #ff6b6b, #feca57);
            margin: 10px auto;
            border-radius: 3px;
        }
        
        .subsection {
            margin: 30px 0;
            padding: 25px;
            background: linear-gradient(135deg, #fff3e0, #ffe0b2);
            border-radius: 15px;
            border-left: 6px solid #ff9f43;
        }
        
        .subsection h3 {
            color: #e17055;
            font-size: 1.4em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .subsection h3::before {
            content: '🎈';
            margin-right: 10px;
            font-size: 1.2em;
        }
        
        .list-item {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            margin-bottom: 8px;
        }
        
        .list-item::before {
            content: '✨';
            position: absolute;
            left: 0;
            top: 12px;
        }
        
        .highlight {
            background: linear-gradient(120deg, #a8edea, #fed6e3);
            padding: 15px;
            border-radius: 12px;
            margin: 20px 0;
            border-left: 5px solid #ff7675;
            font-style: italic;
        }
        
        .story-box {
            background: linear-gradient(135deg, #ffecd2, #fcb69f);
            border: 3px dashed #ff6b6b;/* End custom CSS */