        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #fff; /* Beyaz arka plan */
            color: #333;
            line-height: 1.6;
        }
        
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 100;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #27ae60;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 25px;
        }
        
        nav a {
            text-decoration: none;
            color: #27ae60;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #f1c40f;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #27ae60;
            margin: 3px 0;
            transition: 0.3s;
        }

        .btn {
            display: inline-block;
            background-color: #27ae60;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #219653;
        }
        
        /* HERO SLIDER */
        .hero-slider {
            position: relative;
            height: 80vh;
            overflow: hidden;
        }

        .slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.6s ease-in-out;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
            z-index: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .slide h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .slide p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .book-btn {
            background-color: #f1c40f;
            color: #27ae60;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: bold;
            display: inline-block;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .book-btn:hover {
            background-color: #e6b800;
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: white;
        }

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 3;
            transition: background 0.3s;
        }

        .arrow:hover {
            background: rgba(255,255,255,0.4);
        }

        .prev {
            left: 20px;
        }

        .next {
            right: 20px;
        }

        /* Unified section style */
        .content-section {
            padding: 80px 5%;
            background-color: #fff;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #27ae60;
        }

        /* Centered Intro Text */
        .about-intro {
            max-width: 800px;
            margin: 0 auto 60px;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Triple Info Grid */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .info-card {
            background: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .info-card h3 {
            color: #27ae60;
            margin-bottom: 15px;
            font-size: 1.6rem;
        }

        .info-card ul {
            list-style: none;
            padding-left: 0;
        }

        .info-card ul li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .info-card ul li::before {
            content: "•";
            color: #27ae60;
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 0;
        }

        /* Why Book With Us - 4 Columns */
        .features-grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-card-4 {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid #f1c40f;
        }

        .feature-card-4:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(241, 196, 15, 0.2);
        }

        .feature-icon-4 {
            width: 70px;
            height: 70px;
            background-color: #fff9e6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 2px solid #f1c40f;
        }

        .feature-icon-4 img {
            width: 40px;
            height: 40px;
        }

        .feature-card-4 h3 {
            margin-bottom: 15px;
            color: #27ae60;
        }

        /* Triple Cards Section */
        .triple-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .triple-card {
            background: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .triple-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        }

        .triple-title {
            color: #27ae60;
            margin-bottom: 15px;
            font-size: 1.6rem;
        }

        .triple-card ul {
            list-style: none;
            padding-left: 0;
            margin: 15px 0;
        }

        .triple-card ul li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .triple-card ul li::before {
            content: "✓";
            color: #27ae60;
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 0;
        }

        .triple-btn {
            display: inline-block;
            margin-top: 15px;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: bold;
            text-align: center;
            width: 100%;
            box-sizing: border-box;
            background-color: #27ae60;
            color: white;
        }

        .triple-btn:hover {
            background-color: #219653;
        }

        .support-card {
            background-color: #e8f5e9 !important;
            border-left: 4px solid #27ae60;
        }

        .how-it-works {
            padding: 80px 5%;
            background-color: #ecf0f1;
        }
        
        .steps {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .step {
            background: white;
            width: 300px;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            margin: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #f1c40f;
            color: white;
            border-radius: 50%;
            line-height: 40px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .section-image {
            display: block;
            width: 100%;
            max-width: 1200px;
            margin: 40px auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .contact {
            padding: 80px 5%;
            background-color: #fff;
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-info, .contact-form {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: #1a5d4a;
            color: white;
            padding: 50px 5% 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 1.4rem;
            color: #f1c40f;
        }

        .footer-quote {
            font-style: italic;
            margin: 20px 0;
            line-height: 1.7;
            color: #e0f2e9;
        }

        .footer-contact p {
            margin: 8px 0;
            display: flex;
            align-items: center;
        }

        .footer-contact svg {
            margin-right: 10px;
            color: #f1c40f;
        }

        .map-container {
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 15px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #b3d9cc;
        }

        /* Mobile menu */
        @media (max-width: 768px) {
            .slide h1 {
                font-size: 2.5rem;
            }
            
            nav ul {
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                display: none;
            }

            nav ul.show {
                display: flex;
            }

            nav li {
                margin: 10px 0;
            }

            .hamburger {
                display: flex;
            }

            .steps, .contact-container, .triple-grid, .info-grid, .footer-content, .features-grid-4 {
                flex-direction: column;
                align-items: center;
            }

            .step, .contact-info, .contact-form, .triple-card, .info-card, .feature-card-4 {
                width: 100%;
                max-width: 500px;
            }
        }
