
        :root {
            /* Genç kadın girişimcilik ruhunu yansıtan modern renk paleti */
            --primary-color: #6366F1; /* Modern indigo - güven ve profesyonellik */
            --secondary-color: #EC4899; /* Canlı pembe - dinamizm ve yaratıcılık */
            --accent-color: #F59E0B; /* Altın sarısı - başarı ve enerji */
            --success-color: #10B981; /* Yeşil - büyüme ve ilerleme */
            --background-light: #FAFBFF; /* Çok açık mavi-beyaz */
            --background-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --text-dark: #1F2937;
            --text-light: #6B7280;
            --text-muted: #9CA3AF;
            --white: #FFFFFF;
            --border-light: #E5E7EB;
            
            /* Gradient kombinasyonları */
            --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
            --gradient-secondary: linear-gradient(135deg, #EC4899 0%, #F97316 100%);
            --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
            --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            background-color: var(--white);
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Header Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
            padding: 1rem 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(99, 102, 241, 0.1);
        }
        
        .navbar.scrolled {
            padding: 0.5rem 0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 30px rgba(99, 102, 241, 0.15);
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1.25rem !important;
            border-radius: 50px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            z-index: -1;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 0;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--white) !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
        }
        
        /* Hero Section */
        .hero {
            background: var(--gradient-hero);
            color: var(--white);
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="rgba(255,255,255,0.1)" cx="200" cy="200" r="100"/><circle fill="rgba(255,255,255,0.05)" cx="800" cy="300" r="150"/><circle fill="rgba(255,255,255,0.08)" cx="600" cy="700" r="80"/></svg>');
            background-size: cover;
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
            background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero .lead {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease 0.2s both;
            opacity: 0.95;
            font-weight: 400;
        }
        
        .hero-buttons {
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        .btn-primary-custom {
            background: var(--gradient-secondary);
            border: none;
            color: var(--white);
            font-weight: 600;
            padding: 15px 35px;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-right: 1rem;
            box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
            background: var(--gradient-accent);
        }
        
        .btn-outline-custom {
            border: 2px solid var(--white);
            color: var(--white);
            font-weight: 600;
            padding: 13px 35px;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            background: transparent;
        }
        
        .btn-outline-custom:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
        }
        
        /* Section Styles */
        .section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about {
            background: var(--background-light);
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(99,102,241,0.05)" points="0,0 1000,200 1000,0"/><polygon fill="rgba(236,72,153,0.05)" points="0,1000 1000,800 0,800"/></svg>');
            background-size: cover;
        }
        
        .about-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 4rem;
        }
        
        .about-image {
            flex: 0 0 350px;
        }
        
        .about-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 25px;
            box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
        }
        
        .about-image img:hover {
            transform: translateY(-10px);
            box-shadow: 0 35px 70px rgba(99, 102, 241, 0.3);
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2.2rem;
            margin-bottom: 2rem;
        }
        
        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }
        
        .about-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }
        
        .stat-label {
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Services Section */
        .services {
            background: var(--white);
        }
        
        .service-card {
            background: var(--white);
            border-radius: 25px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: all 0.3s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15);
        }
        
        .service-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: var(--white);
            font-size: 2.2rem;
            transition: all 0.3s ease;
        }
        
        .service-card:nth-child(2) .service-icon {
            background: var(--gradient-secondary);
        }
        
        .service-card:nth-child(3) .service-icon {
            background: var(--gradient-accent);
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .service-card h4 {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .service-card p {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 1rem;
        }
        
        /* Articles Section */
        .articles {
            background: var(--background-light);
        }
        
        .article-card {
            background: var(--white);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid var(--border-light);
        }
        
        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15);
        }
        
        .article-image {
            height: 220px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 3.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .article-card:nth-child(2) .article-image {
            background: var(--gradient-secondary);
        }
        
        .article-card:nth-child(3) .article-image {
            background: var(--gradient-accent);
        }
        
        .article-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="rgba(255,255,255,0.1)" cx="20" cy="20" r="10"/><circle fill="rgba(255,255,255,0.05)" cx="80" cy="30" r="15"/><circle fill="rgba(255,255,255,0.08)" cx="60" cy="70" r="8"/></svg>');
        }
        
        .article-content {
            padding: 2rem;
        }
        
        .article-content h5 {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .article-content p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .article-date {
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Contact Section */
        .contact {
            background: var(--white);
        }
        
        .contact-form {
            background: var(--background-light);
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(99, 102, 241, 0.1);
            border: 1px solid var(--border-light);
        }
        
        .form-control {
            border: 2px solid var(--border-light);
            border-radius: 15px;
            padding: 15px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
            background: var(--white);
        }
        
        .form-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }
        
        .contact-info {
            padding: 3rem 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: var(--background-light);
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.1);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            margin-right: 1.5rem;
            font-size: 1.4rem;
            flex-shrink: 0;
        }
        
        .contact-item:nth-child(2) .contact-icon {
            background: var(--gradient-secondary);
        }
        
        .contact-item:nth-child(3) .contact-icon {
            background: var(--gradient-accent);
        }
        
        .contact-item:nth-child(4) .contact-icon {
            background: var(--gradient-primary);
        }
        
        .contact-text h6 {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        
        .contact-text p {
            color: var(--text-light);
            margin: 0;
            line-height: 1.6;
        }
        
        /* Footer */
        .footer {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 4rem 0 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,100 1000,0"/><circle fill="rgba(255,255,255,0.03)" cx="200" cy="200" r="100"/><circle fill="rgba(255,255,255,0.05)" cx="800" cy="300" r="80"/></svg>');
            background-size: cover;
        }
        
        .footer-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .footer h4 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .footer p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        .social-links {
            margin: 3rem 0;
        }
        
        .social-link {
            display: inline-block;
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            margin: 0 0.75rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .social-link:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: rgba(255,255,255,0.8);
            font-size: 1rem;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero .lead {
                font-size: 1.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn-primary-custom,
            .btn-outline-custom {
                margin-right: 0;
                width: 100%;
                max-width: 300px;
            }
            
            .about-content {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }
            
            .about-image {
                flex: none;
                max-width: 300px;
                margin: 0 auto;
            }
            
            .about-stats {
                justify-content: center;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .navbar-nav {
                text-align: center;
                padding-top: 1rem;
            }
            
            .contact-form,
            .contact-info {
                padding: 2rem;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem 1rem;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 120px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .service-card,
            .article-card {
                margin-bottom: 2rem;
            }
        }
        
        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }