  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: white;
            color: #333;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 700;
            cursor: pointer; /* Changed to pointer as it's a button */
            transition: all 0.3s ease;
            border: 1px solid #ddd;
        }

        .btn-primary {
            background-color: #2c3e50;
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background-color: #1a252f;
        }

        .btn-blue {
            background-color: #3498db;
            color: white;
            border: none;
        }

        .btn-blue:hover {
            background-color: #2980b9;
        }

        /* Üst Bilgi Çubuğu */
        .top-bar {
            background-color: #2c3e50;
            color: white;
            padding: 10px 0;
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .top-bar.hidden {
            transform: translateY(-100%);
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 20px;
        }

        .social-media {
            display: flex;
            gap: 15px;
        }

        .social-media a {
            color: white;
            font-size: 16px;
            transition: color 0.3s;
        }

        .social-media a:hover {
            color: #1abc9c;
        }

        /* Navigasyon */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 40px;
            z-index: 1000;
            transition: top 0.3s ease;
        }

        .navbar.top {
            top: 0;
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 90px;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            font-weight: 600;
            color: #2c3e50;
            font-size: 18px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #1abc9c;
        }

        .nav-links li {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            padding: 10px 0;
            min-width: 180px;
            z-index: 1001;
        }

        .nav-links li:hover > .dropdown-menu {
            display: block;
        }

        .dropdown-menu a {
            padding: 12px 20px;
            display: block;
            transition: background-color 0.3s, color 0.3s;
        }

        .dropdown-menu a:hover {
            background-color: #f5f5f5;
            color: #1abc9c;
        }

        .nav-links .has-dropdown > a {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links .has-dropdown > a i {
            margin-left: auto;
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .nav-links .has-dropdown:hover > a i {
            transform: rotate(180deg);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .language-selector,
        .currency-selector {
            position: relative;
        }

        .language-btn,
        .currency-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            color: #2c3e50;
            padding: 5px 10px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .language-btn:hover,
        .currency-btn:hover {
            background-color: #f0f0f0;
        }

        .language-btn img,
        .currency-btn img {
            width: 24px;
            height: 16px;
            border: 1px solid #ddd;
            vertical-align: middle;
        }

        .language-dropdown,
        .currency-dropdown {
            position: absolute;
            right: 0;
            top: 100%;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            padding: 10px 0;
            min-width: 120px;
            display: none;
            z-index: 1001;
        }

        .language-dropdown a,
        .currency-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 15px;
            transition: background-color 0.3s;
        }

        .language-dropdown a:hover,
        .currency-dropdown a:hover {
            background-color: #f5f5f5;
        }

        .language-selector:hover .language-dropdown,
        .currency-selector:hover .currency-dropdown {
            display: block;
        }

        .action-buttons {
            display: flex;
            gap: 10px;
        }

        .action-btn {
            width: 40px;
            height: 40px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s;
        }

        .whatsapp-btn {
            background-color: #1abc9c;
        }

        .whatsapp-btn:hover {
            background-color: #16a085;
        }

        .phone-btn {
            background-color: #3498db;
        }

        .phone-btn:hover {
            background-color: #2980b9;
        }

        .menu-toggle {
            display: none;
        }

        .close-btn {
            display: none;
        }

        
        .header-section {
            height: 200px;
            background-color: #2c3e50;
            position: relative;
            margin-top: 40px;
            display: flex;
            align-items: center;
            justify-content: left;
        }

        .header-section h1 {
            color: white;
            font-size: 28px;
            font-weight: 700;
            text-align: left;
            padding: 0 35px;
            margin-top: 70px;
            margin-left: 320px;
        } 

        @media (min-width: 769px) and (max-width: 1280px) {
            .header-section h1 {
                font-size: 28px;
                margin-top: 70px;
                margin-left: 5px;
            }
        } 

        @media (max-width: 768px) {
            .header-section {
                height: 100px;
                margin-top: 30px;
            }

            .header-section h1 {
                font-size: 20px;
                font-weight: 500;
                margin-top: 10px;
                margin-left: -5px;
            }
        }

        
        .property-detail-page { 
            padding: 50px 0;
            display: block; 
           
        }
        
      
        .property-detail-page .main-content {
            width: 100%;
            padding: 0 15px; 
            margin: 0 auto; 
        }

        .bordered-section {
            border: 1px solid #ccc;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            background-color: white;
        }

        .bordered-section h3 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 20px;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
        }
        
     
        footer {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: white;
            padding: 70px 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 90px;
        }

        .footer-about p {
            color: #bdc3c7;
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            color: white;
            font-size: 22px;
            transition: color 0.3s, transform 0.3s;
        }

        .footer-social a:hover {
            color: #1abc9c;
            transform: scale(1.2);
        }

        .footer-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bdc3c7;
            font-size: 18px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-contact-item {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            color: #bdc3c7;
            font-size: 18px;
        }

        .footer-contact-item i {
            color: #1abc9c;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            text-align: center;
            color: #bdc3c7;
            font-size: 16px;
        }

        
        @media (max-width: 992px) {
            .property-detail-page {
                grid-template-columns: 1fr; 
            }

            .main-content {
                width: 100%;
                grid-column: auto;
                padding: 0 15px;
            }
          
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .navbar {
                top: 0;
                position: fixed;
                width: 100%;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }

            .navbar-container {
                flex-wrap: nowrap;
                padding: 10px 15px;
                justify-content: space-between;
                align-items: center;
            }

            .logo img {
                height: 70px;
            }

            .nav-links {
                display: block;
                position: fixed;
                top: 0;
                right: -300px;
                width: 280px;
                max-width: 80%;
                height: 100%;
                background-color: white;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
                transition: right 0.3s ease-in-out;
                overflow-y: auto;
                flex-direction: column;
                align-items: flex-start;
                z-index: 1001;
            }

            .nav-links.active {
                right: 0;
                padding: 70px 20px 20px 20px;
            }

            .nav-links li {
                width: 100%;
                text-align: left;
                margin-bottom: 10px;
            }

            .nav-links li a {
                padding: 10px 0;
                display: block;
            }

            .dropdown-menu {
                position: static;
                box-shadow: none;
                padding: 0;
                margin-top: 5px;
                width: 100%;
                display: none !important;
            }

            .nav-links li.active-dropdown > .dropdown-menu {
                display: block !important;
            }

            .nav-links .has-dropdown > a i {
                display: inline-block;
                transform: rotate(0deg);
                margin-left: auto;
            }

            .nav-links .has-dropdown.active-dropdown > a i {
                transform: rotate(180deg);
            }

            .menu-toggle {
                display: block;
                cursor: pointer;
            }

            .close-btn {
                display: none;
                align-items: center;
                justify-content: center;
                position: absolute;
                top: 15px;
                right: 15px;
                font-size: 20px;
                color: white;
                background-color: #7f8c8d;
                width: 38px;
                height: 38px;
                border-radius: 50%;
                cursor: pointer;
                box-shadow: 0 2px 5px rgba(0,0,0,0.2);
                z-index: 1002;
                transition: background-color 0.3s;
            }

            .nav-links.active .close-btn {
                display: flex;
            }

            .close-btn:hover {
                background-color: #95a5a6;
            }

            .nav-actions {
                display: flex;
                align-items: center;
                gap: 10px;
                flex-grow: 1;
                justify-content: flex-end;
            }

            .nav-actions .action-buttons {
                display: none;
            }

            .currency-selector,
            .language-selector {
                position: relative;
            }

            .currency-btn,
            .language-btn {
                background-color: #f0f0f0;
                border: 1px solid #ccc;
                padding: 8px 12px;
                border-radius: 20px;
                font-size: 14px;
                box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            }

            .language-btn img {
                width: 20px;
                height: 14px;
            }

            .currency-dropdown,
            .language-dropdown {
                position: absolute;
                top: 100%;
                right: 0;
                left: auto;
                width: 120px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                border-radius: 5px;
                padding: 10px 0;
                margin-top: 5px;
                background-color: white;
            }

            .language-selector:hover .language-dropdown,
            .currency-selector:hover .currency-dropdown {
                display: none;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }