* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.6;
            color: #333;
            background: #fff;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        header {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/modern-beauty-salon.jpg') center/cover no-repeat;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        }
        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 10px;
            color: #ffd1dc;
        }
        .hero-content .slogan {
            font-size: 1.8rem;
            margin-bottom: 40px;
            font-style: italic;
        }
        .btn {
            display: inline-block;
            background: #e91e63;
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-size: 1.2rem;
            transition: 0.3s;
        }
        .btn:hover {
            background: #c2185b;
            transform: translateY(-5px);
        }

        /* Sections */
        section {
            padding: 100px 0;
        }
        #hakkimizda {
            background: #fff5f8;
        }
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 50px;
            color: #e91e63;
            position: relative;
        }
        .section-title::after {
            content: '';
            width: 100px;
            height: 4px;
            background: #ffd1dc;
            display: block;
            margin: 20px auto;
        }

        /* Hizmetler */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        .service-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: 0.3s;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(233,30,99,0.2);
        }
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .service-card h3 {
            color: #e91e63;
            margin-bottom: 15px;
        }

        /* İletişim */
        #iletisim {
            background: linear-gradient(to right, #e91e63, #ad1457);
            color: white;
        }
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            text-align: center;
        }
        .contact-item i {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #ffd1dc;
        }
        .map-link {
            display: block;
            margin-top: 20px;
            background: rgba(255,255,255,0.2);
            padding: 15px;
            border-radius: 10px;
            transition: 0.3s;
        }
        .map-link:hover {
            background: rgba(255,255,255,0.3);
        }

        /* Footer */
        footer {
            background: #212121;
            color: #aaa;
            text-align: center;
            padding: 40px 0;
        }