        /* Genel Stiller */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Header ve Slider Bölümü */
        .slider-container {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            margin-top: 0;
        }
        
        .slider {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide:nth-child(1) {
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/slider/slide01.jpg');
        }
        
        .slide:nth-child(2) {
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/slider/slide02.jpg');
        }
        
        .slide:nth-child(3) {
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/slider/slide03.jpg');
        }
        
        /* Navigasyon */
        .header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 20px 0;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            background-color: rgba(0, 0, 0, 0.3);
            padding: 10px 20px;
            border-radius: 5px;
        }
        
        .menu {
            display: flex;
            list-style: none;
            background-color: rgba(0, 0, 0, 0.3);
            padding: 10px 20px;
            border-radius: 5px;
        }
        
        .menu li {
            margin-left: 20px;
        }
        
        .menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .menu a:hover {
            color: #f0f0f0;
        }
        
        /* Gelişmiş Arama */
        .advanced-search {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            width: 80%;
            max-width: 900px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .search-form {
            display: flex;
            justify-content: space-between;
            gap: 15px;
        }
        
        .search-group {
            flex: 1;
        }
        
        .search-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #555;
        }
        
        .search-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            background-color: #f9f9f9;
        }
        
        .search-btn {
            background-color: #2c3e50;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            align-self: flex-end;
            transition: background-color 0.3s;
        }
        
        .search-btn:hover {
            background-color: #1a252f;
        }
        
        /* Ana İçerik */
        .main-content {
            padding: 50px 0;
        }
        
        .content-wrapper {
            display: flex;
            gap: 30px;
        }
        
        /* Gelişmiş Arama Bölümü */
        .sidebar {
            flex: 1;
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .sidebar h2 {
            margin-bottom: 20px;
            color: #2c3e50;
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 10px;
        }
        
        .filter-group {
            margin-bottom: 20px;
        }
        
        .filter-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #555;
        }
        
        .filter-group select,
        .filter-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
        }
        
        .filter-btn {
            background-color: #2c3e50;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s;
        }
        
        .filter-btn:hover {
            background-color: #1a252f;
        }
        
        /* Emlak İlanları */
        .property-listings {
            flex: 2;
        }
        
        .section-title {
            margin-bottom: 25px;
            color: #2c3e50;
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 10px;
        }
        
        .properties {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .property-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .property-card:hover {
            transform: translateY(-5px);
        }
        
        .property-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .property-info {
            padding: 20px;
        }
        
        .property-price {
            font-size: 20px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .property-address {
            color: #666;
            margin-bottom: 10px;
        }
        
        .property-features {
            display: flex;
            justify-content: space-between;
            color: #777;
            font-size: 14px;
        }
        
        /* Banner */
        .banner {
            background-color: #2c3e50;
            color: white;
            padding: 60px 0;
            text-align: center;
            margin: 50px 0;
        }
        
        .banner h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }
        
        .banner p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 25px;
        }
        
        .banner-btn {
            background-color: white;
            color: #2c3e50;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .banner-btn:hover {
            background-color: #f8f9fa;
        }
        
        /* Footer */
        .footer {
            background-color: #1a252f;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 18px;
            border-bottom: 1px solid #34495e;
            padding-bottom: 10px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            font-size: 14px;
        }
        
        /* Responsive Tasarım */
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .advanced-search {
                width: 90%;
            }
            
            .search-form {
                flex-direction: column;
            }
            
            .search-btn {
                align-self: stretch;
            }
        }
        
        @media (max-width: 768px) {
            .slider-container {
                height: 500px;
            }
            
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            .menu {
                margin-top: 10px;
            }
            
            .properties {
                grid-template-columns: 1fr;
            }
        }