
        /* Base Styles and Color Theme */
        :root {
            --color-primary: #e91e63; /* Deep pink */
            --color-secondary: #9c27b0; /* Purple */
            --color-accent: #ff4081; /* Bright pink */
            --color-dark: #2c2c54; /* Dark purple */
            --color-light: #f8f9fa; /* Light gray */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--color-light);
            color: #333;
            line-height: 1.6;
        }
        
		 html {
            scroll-behavior: smooth;
        }
		
		
		
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* Header Styles */
        header {
            background-color: var(--color-dark);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--color-accent);
        }
        
        /* Navigation */
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }
        
        .desktop-nav li {
            margin-left: 1.5rem;
        }
        
        .desktop-nav a {
            color: white;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem 0;
            position: relative;
        }
        
        .desktop-nav a:hover {
            color: var(--color-accent);
        }
        
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-accent);
            transition: width 0.3s;
        }
        
        .desktop-nav a:hover::after {
            width: 100%;
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
            background-size: 200% 100%;
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .mobile-menu-btn::before {
            content: 'MENU';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(90deg, var(--color-accent), var(--color-primary), var(--color-secondary));
            background-size: 200% 100%;
            animation: gradientMove 3s infinite linear;
        }
        
        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--color-dark);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .mobile-menu.active {
            display: flex;
        }
        
        .mobile-menu ul {
            list-style: none;
            text-align: center;
        }
        
        .mobile-menu li {
            margin: 1.5rem 0;
        }
        
        .mobile-menu a {
            color: white;
            font-size: 1.5rem;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .mobile-menu a:hover {
            color: var(--color-accent);
        }
        
        .close-menu {
            
            top: 2rem;
            right: 2rem;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: none;
            border: none;
        }
        
        /* Page Header */
        .page-header {
            margin-top: 80px;
            padding: 3rem 0;
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: white;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
			color:#FFF;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Main Content */
        main {
            padding: 3rem 0;
        }
        
        section {
            margin-bottom: 3rem;
        }
        
        h1, h2, h3 {
            color: var(--color-dark);
            margin-bottom: 1.5rem;
        }
        
        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            color: var(--color-primary);
        }
        
		 
		
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid var(--color-accent);
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        
        /* Content Section */
        .content-section {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }
        
        .content-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        /* Models Section */
        .models {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .model-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .model-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .model-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .model-info {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .model-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }
        
        .model-nationality {
            color: var(--color-dark);
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .price-list {
            margin-top: auto;
        }
        
        .price-list h3 {
            color: var(--color-secondary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .price-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #eee;
        }
        
        .price-item:last-child {
            border-bottom: none;
        }
        
        .service-name {
            font-weight: 500;
        }
        
        .service-price {
            color: var(--color-primary);
            font-weight: bold;
        }
        
        /* Popular Areas */
        .popular-areas {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .area-card {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: white;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .area-card:hover {
            transform: translateY(-5px);
        }
        
        .area-card h3 {
            color: white;
            margin-bottom: 0.5rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--color-dark);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--color-primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--color-accent);
            transform: translateY(-5px);
        }
        
        /* Social Buttons Drawer */
        .social-drawer {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 999;
        }
        
        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            position: relative;
        }
        
        .telegram-btn {
            background-color: #0088cc;
        }
        
        .call-btn {
            background-color: #4caf50;
        }
        
        .social-btn:hover {
            transform: translateX(10px);
        }
        
        .social-btn i {
            color: white;
            font-size: 1.5rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .page-header p {
                font-size: 1rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .models {
                grid-template-columns: 1fr;
            }
            
            .areas-grid {
                grid-template-columns: 1fr;
            }
        }
    </style>