    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', 'Open Sans', sans-serif;
    }

    body {
      background: linear-gradient(135deg, #f5f8fc 0%, #e9f0f9 100%);
      color: #333;
      line-height: 1.6;
      min-height: 100vh;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .top-bar {
      background: linear-gradient(90deg, #002f6c 0%, #0047a3 100%);
      color: white;
      padding: 8px 0;
      font-size: 14px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

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

    .top-bar .left,
    .top-bar .right {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .top-bar a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all 0.3s ease;
      padding: 4px 8px;
      border-radius: 4px;
    }

    .top-bar a:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
    }

    .top-bar a i {
      font-size: 16px;
    }

    .navbar {
      background: white;
      padding: 15px 0;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 28px;
      font-weight: bold;
      color: #003d99;
      display: flex;
      align-items: center;
      gap: 10px;
	  margin-left: -32px;
    }

    .logo i {
      color: #ff6b00;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: #003d99;
      cursor: pointer;
    }

    .menu {
      display: flex;
      gap: 25px;
      align-items: center;
      position: relative;
      z-index: 1000;
	  left: 30px;
    }

    .menu a {
      color: #333;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      position: relative;
      padding: 5px 0;
      transition: color 0.3s ease;
    }

    .menu a:hover {
      color: #003d99;
    }

    .menu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #003d99;
      transition: width 0.3s ease;
    }

    .menu a:hover::after {
      width: 100%;
    }

    .menu-item {
      position: relative;
    }
    
    .menu-item > a {
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
      color: #333;
      text-decoration: none;
      position: relative;
      padding: 5px 0;
      transition: color 0.3s ease;
    }

    /* Dropdown Menüsü */
    .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      padding: 15px 0;
      display: none;
      min-width: 200px;
      z-index: 999;
      animation: fadeIn 0.3s ease;
    }

    .dropdown a {
      display: block;
      padding: 10px 20px;
      color: #003d99;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.3s ease;
    }

    .dropdown a:hover {
      background: #f0f4ff;
    }

    .with-dropdown:hover .mega-dropdown {
      display: flex;
    }

    /* Mega Dropdown - 3 sıra */
    .mega-dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: -204px;
      background: white;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      padding: 20px;
      width: 975px; /* Genişlik artırıldı */
      z-index: 999;
      animation: fadeIn 0.3s ease;
    }

    /* İki sıra için düzenleme */
    .dropdown-row {
      display: flex;
      width: 100%;
      gap: 20px;
      justify-content: space-between;
    }

    .dropdown-card {
      display: flex;
      gap: 15px;
      padding: 15px;
      background: #f9fbff;
      border-radius: 10px;
      align-items: flex-start;
      transition: all 0.3s ease;
    }
	
    .dropdown-columns {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }	
	
    .dropdown-column {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }	

    .dropdown-card:hover {
      background: #edf3ff;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .dropdown-card i {
      font-size: 24px;
      color: #003d99;
      background: #e6efff;
      padding: 12px;
      border-radius: 10px;
      flex-shrink: 0;
    }

    .dropdown-card-content {
      flex: 1;
    }

    .dropdown-card strong {
      font-size: 16px;
      color: #003d99;
      display: block;
      margin-bottom: 6px;
    }

    .dropdown-card p {
      font-size: 14px;
      color: #555;
      margin: 0;
      line-height: 1.5;
    }

    /* Hover ile açılmasını sağla */
    .menu-item:hover .dropdown,
    .menu-item:hover .mega-dropdown {
      display: block;
    }

    /* Slider */
    .slider-wrapper {
      position: relative;
      width: 100%;
      max-width: 1200px;
      height: 400px;
      margin: 50px auto;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .slider {
      display: flex;
      transition: transform 0.6s ease-in-out;
      height: 100%;
    }

    .slide {
      width: 100%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 40px;
      background-color: white;
      height: 100%;
    }

    .slide-content {
      width: 50%;
      padding-right: 40px;
    }

    .slide-content h2 {
      font-size: 32px;
      margin-bottom: 15px;
      color: #003d99;
      font-weight: 700;
    }

    .slide-content p {
      font-size: 16px;
      color: #555;
      margin-bottom: 20px;
    }

    .slide-image {
      width: 45%;
      display: flex;
      height: 100%;
      align-items: center;
      justify-content: center;
    }

    .slide-image img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .slide-indicators {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }

    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ccc;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .indicator.active {
      background: #003d99;
      transform: scale(1.2);
    }

    .slide-controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      transform: translateY(-50%);
    }

    .slide-control {
      background: rgba(255, 255, 255, 0.8);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #003d99;
      font-size: 24px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .slide-control:hover {
      background: white;
      transform: scale(1.1);
    }

    .btn {
      display: inline-block;
      padding: 14px 32px;
      background: linear-gradient(90deg, #002f6c 0%, #0047a3 100%);
      color: white;
      text-decoration: none;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    }

    .btn:hover {
      background: #e55e00;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin: 60px 0;
    }

    .feature-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .feature-card i {
      font-size: 48px;
      color: #003d99;
      margin-bottom: 20px;
      background: rgba(0, 61, 153, 0.1);
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .feature-card h3 {
      font-size: 20px;
      color: #003d99;
      margin-bottom: 15px;
    }

    .feature-card p {
      color: #666;
      font-size: 16px;
    }

    footer {
      background: linear-gradient(90deg, #002f6c 0%, #0047a3 100%);
      color: white;
      padding: 50px 0 20px;
      margin-top: 60px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-column h3 {
      font-size: 20px;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background: #ff6b00;
    }

    .footer-links {
      list-style: none;
    }

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

    .footer-links a {
      color: #d1e0ff;
      text-decoration: none;
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

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

    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 15px;
    }

    .footer-contact i {
      color: #ff6b00;
      font-size: 18px;
      margin-top: 3px;
    }

    .copyright {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #d1e0ff;
      font-size: 14px;
    }

    /* Animasyonlar */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive Tasarım */
    @media (max-width: 992px) {
      .slide {
        flex-direction: column;
        padding: 30px;
        text-align: center;
      }

      .slide-content, .slide-image {
        width: 100%;
      }

      .slide-content {
        padding-right: 0;
        margin-bottom: 30px;
      }

      .mega-dropdown {
        width: 700px;
      }
    }

    @media (max-width: 768px) {
      .top-bar .container {
        flex-direction: column;
        gap: 10px;
      }
      
      .navbar .container {
        position: relative;
      }
      
      .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px 0;
        z-index: 999;
      }
      
      .menu.active {
        display: flex;
      }
      
      .menu-item {
        width: 100%;
      }
      
      .menu a {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
      }
      
      .dropdown, .mega-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        display: none;
        animation: none;
		padding: 10px 0;
      }
      
      .dropdown a {
        padding-left: 40px;
      }
      
      .mega-dropdown {
        flex-direction: column;
        padding: 10px;
      }
      
      .menu-toggle {
        display: block;
      }
      
      .slide-content h2 {
        font-size: 24px;
      }
      
      .slide-content p {
        font-size: 14px;
      }
      
      .slider-wrapper {
        height: auto;
        margin: 30px auto;
      }
      
      .slide-controls {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .top-bar .left,
      .top-bar .right {
        width: 100%;
        justify-content: center;
      }
      
      .slide {
        padding: 20px;
      }
      
      .btn {
        padding: 12px 25px;
        font-size: 14px;
      }
      
      .mega-dropdown {
        width: 100%;
      }
    }
	
@media (max-width: 768px) {
  .mega-dropdown {
    width: 100%;
    position: static;
    flex-direction: column;
    max-height: 300px; /* yükseklik sınırı */
    overflow-y: auto;  /* düşey kaydırma aktif */
    padding: 10px 0;
  }
      
      .dropdown-columns {
        grid-template-columns: 1fr;
      }
      .slide-image {
        display: none;
      }	  
    }	
	
@media (max-width: 992px) {
  .top-bar .left {
    display: none; /* Soldaki linkleri gizle */
  }
  .top-bar .right {
    display: flex; /* Sağdaki linkler görünsün */
  }
}







	
	
	
	
	

        #domainContainer {
            width: 99%;
            max-width: 1200px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            overflow: hidden;
			margin-left: 150px;
			margin: 0 auto;
        }
        
        .domainHeader {
            background: linear-gradient(to right, #2c3e50, #4a6491);
            color: white;
            text-align: center;
            padding: 40px 20px;
            position: relative;
        }
        
        .domainHeader h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .domainHeader p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .domainPricing {
            padding: 40px 20px;
            background: #f8f9fa;
        }
        
        .domainPricingTitle {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 40px;
            color: #2c3e50;
            position: relative;
        }
        
        .domainPricingTitle::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: #3498db;
            border-radius: 3px;
        }
        
        .pricingGrid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .pricingBox {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid #e0e0e0;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .pricingBox:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            border-color: #3498db;
        }
		
		
        
        .popular-tag {
            position: absolute;
            top: 15px;
            right: -30px;
            background: #e74c3c;
            color: white;
            padding: 5px 35px;
            transform: rotate(45deg);
            font-weight: bold;
            font-size: 0.85rem;
        }
        
        .domainExtension {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2c3e50;
            margin: 15px 0;
        }
        
        .domainPrice {
            font-size: 2rem;
            color: #3498db;
            margin: 10px 0;
            font-weight: bold;
        }
        
        .domainPrice span {
            font-size: 1.2rem;
            color: #7f8c8d;
        }
        
        .domainFeatures {
            list-style: none;
            margin: 25px 0;
            text-align: left;
            flex-grow: 1;
        }
        
        .domainFeatures li {
            padding: 10px 0;
            border-bottom: 1px dashed #ecf0f1;
            display: flex;
            align-items: center;
        }
        
        .domainFeatures li:last-child {
            border-bottom: none;
        }
        
        .domainFeatures li i {
            color: #2ecc71;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .domainCheck {
            padding: 50px 20px;
            background: #f8f9fa;
            text-align: center;
        }
        
        .domainCheckTitle {
            font-size: 2rem;
            margin-bottom: 40px;
            color: #2c3e50;
            position: relative;
        }
        
        .domainCheckTitle::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: #27ae60;
            border-radius: 3px;
        }
        
        .searchContainer {
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .searchBox {
            display: flex;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            border-radius: 50px;
            overflow: hidden;
        }
        
        .searchInput {
            flex: 1;
            padding: 18px 25px;
            font-size: 1.1rem;
            border: none;
            outline: none;
            background: #f8f9fa;
        }
        
        .searchButton {
            background: linear-gradient(to right, #27ae60, #219653);
            color: white;
            border: none;
            padding: 0 35px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .searchButton:hover {
            background: linear-gradient(to right, #219653, #1e8449);
        }
        
        .resultsGrid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .resultCard {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .resultCard:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .resultExtension {
            font-size: 1.2rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .resultDomain {
            font-size: 1.1rem;
            color: #7f8c8d;
            margin-bottom: 15px;
            word-break: break-all;
        }
        
        .statusBadge {
            display: inline-block;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .available {
            background: rgba(39, 174, 96, 0.15);
            color: #27ae60;
        }
        
        .taken {
            background: rgba(231, 76, 60, 0.15);
            color: #e74c3c;
        }
        
        .domainFooter {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 25px;
            font-size: 1.1rem;
        }
        
        @media (max-width: 768px) {
            .domainHeader h1 {
                font-size: 2.2rem;
            }
            
            .domainHeader p {
                font-size: 1rem;
            }
            
            .searchBox {
                flex-direction: column;
                border-radius: 15px;
            }
            
            .searchInput, .searchButton {
                width: 100%;
                border-radius: 0;
                padding: 15px;
                text-align: center;
            }
            
            .pricingGrid {
                grid-template-columns: 1fr;
            }
            
            .resultsGrid {
                grid-template-columns: 1fr;
            }
            #domainContainer {
                margin-left: 2px;
            }			
        }	
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
    .hostcontainer {
      max-width: 1200px;
      margin: 0 auto;
	  background: #f8f9fa;
	  border-radius: 20px;
	  margin-top: 50px;
	  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
    
    .hostcontainer-header {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .hostcontainer-header h1 {
      font-size: 2.5rem;
      color: #2c3e50;
      margin-bottom: 10px;
    }
    
    .hostcontainer-header p {
      font-size: 1.1rem;
      color: #7f8c8d;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .hostcontainer-menu {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }
    
    .hostcontainer-menu button {
      padding: 12px 25px;
      background-color: #ecf0f1;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .hostcontainer-menu button:hover {
      background-color: #bdc3c7;
      transform: translateY(-2px);
    }
    
    .hostcontainer-menu button.active {
      background-color: #3498db;
      color: white;
      box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
    }
    
    .hostcontainer-section {
      display: none;
      animation: fadeIn 0.5s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .hostcontainer-section.active {
      display: block;
    }
    
    /* VDS Planları Tablosu */
    #vds {
      max-width: 1171px;
      margin: auto;
    }
	
    #trlin {
      max-width: 1171px;
      margin: auto;
    }	
	
    #delin {
      max-width: 1171px;
      margin: auto;
    }	
	
    #dewin {
      max-width: 1171px;
      margin: auto;
    }	
	
    #makale {
      max-width: 1171px;
      margin: auto;
    }		
    
    .hostcontainer-vds-wrapper {
      max-width: 1000px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    
    .hostcontainer-vds-plan {
      background: white;
      border: 1px solid #e0e0e0;
      margin-bottom: 10px;
      padding: 20px;
      border-radius: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
	  overflow: hidden;
	  position: relative;
    }
    
    .hostcontainer-vds-plan:hover {
      transform: scale(1.02);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
	
/* Ekstra özellik bloğu stil */
.hostcontainer-vds-extra {
  display: none;
  margin-top: 10px;
  padding: 10px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hostcontainer-vds-extra {
    display: block !important;
    text-align: left;
    margin: 10px 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hostcontainer-vds-extra p {
    margin: 5px 0;
    line-height: 1.5;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
  }

  .hostcontainer-vds-extra p i {
    margin-right: 8px;
    color: #5cb85c;
    min-width: 20px;
    text-align: center;
  }
}

.hostcontainer-vds-plan:hover .hostcontainer-vds-extra {
  display: block;
}	
    
    .hostcontainer-vds-plan span {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      flex: 1;
      min-width: 100px;
      padding: 8px 5px;
      text-align: center;
    }
    
    .hostcontainer-vds-plan i {
      margin-right: 5px;
      color: #3498db;
      font-size: 1.5rem;
	  color: darkgrey;
    }
    
    .hostcontainer-header-row {
      font-weight: bold;
      background-color: #f1f8ff;
      border-radius: 10px;
      position: sticky;
      top: 10px;
      z-index: 10;
    }
    
    .hostcontainer-vds-plan .satinal {
      background-color: #2ecc71;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-block;
      text-align: center;
      min-width: 120px;
    }
    
    .hostcontainer-vds-plan .satinal:hover {
      background-color: #27ae60;
      transform: scale(1.05);
    }
    
    /* Hosting Kutuları */
    .hostcontainer-hosting-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
      margin-top: 20px;
    }
    
    .hostcontainer-hosting-box {
      background-color: white;
      border: 1px solid #e0e0e0;
      padding: 30px 20px;
      width: 250px;
      border-radius: 15px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      position: relative;
      overflow: hidden;
    }
    
    .hostcontainer-hosting-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .hostcontainer-hosting-box:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, #3498db, #2ecc71);
    }
    
    .hostcontainer-hosting-box.popular:before {
      height: 8px;
      background: linear-gradient(90deg, #e74c3c, #e67e22);
    }
    
    .hostcontainer-hosting-box h4 {
      margin-top: 0;
      font-size: 1.4rem;
      color: #2c3e50;
      margin-bottom: 15px;
    }
    
    .hostcontainer-hosting-box p {
      margin: 8px 0;
      color: #7f8c8d;
    }
    
    .hostcontainer-hosting-box .price {
      font-size: 28px;
      font-weight: bold;
      margin: 20px 0;
      color: #2c3e50;
    }
    
    .hostcontainer-hosting-box .price .currency {
      font-size: 20px;
      vertical-align: super;
    }
    
    .hostcontainer-hosting-box .price .period {
      font-size: 14px;
      font-weight: normal;
      color: #7f8c8d;
    }
    
    .hostcontainer-hosting-box .satinal {
      display: inline-block;
      margin-top: 15px;
      padding: 12px 25px;
      background-color: #e67e22;
      color: white;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      width: 90%;
    }
    
    .hostcontainer-hosting-box .satinal:hover {
      background-color: #d35400;
      transform: scale(1.05);
    }
    
    .popular-tag {
      position: absolute;
      top: 15px;
      right: -30px;
      background: #e74c3c;
      color: white;
      padding: 5px 35px;
      transform: rotate(45deg);
      font-size: 12px;
      font-weight: bold;
    }
    
    .hostcontainer-hosting-box.popular {
      transform: scale(1.05);
      border: 2px solid #f1c40f;
    }
    
    /* Mobil görünüm */
    @media (max-width: 768px) {
      .hostcontainer-header h1 {
        font-size: 1.8rem;
      }

 .hostcontainer-header-row {
    display: none;
  }
      
      .hostcontainer-menu {
        gap: 10px;
      }
      
      .hostcontainer-menu button {
        padding: 10px 15px;
        font-size: 0.9rem;
      }
      
      .hostcontainer-vds-header-row {
        display: none;
      }
      
      .hostcontainer-vds-plan {
        display: block;
        position: relative;
        padding: 20px 15px;
      }
      
      .hostcontainer-vds-plan > span {
        display: flex;
        align-items: center;
        margin: 12px 0;
        justify-content: flex-start;
        text-align: left;
        min-width: auto;
        padding: 0;
      }
      
      .hostcontainer-vds-plan > span::before {
        content: attr(data-label);
        font-weight: bold;
        min-width: 100px;
        display: inline-block;
        color: #2c3e50;
        margin-right: 15px;
      }
      
      .hostcontainer-vds-plan .satinal {
        display: block;
        margin-top: 20px;
        width: 100%;
        padding: 12px;
      }
      
      .hostcontainer-vds-plan i {
        font-size: 1rem;
      }
      
      .hostcontainer-hosting-box {
        width: 100%;
        max-width: 350px;
      }
      
      .hostcontainer-hosting-box.popular {
        transform: scale(1);
      }
    }
    
    @media (max-width: 480px) {
      .hostcontainer-header h1 {
        font-size: 1.5rem;
      }
      
      .hostcontainer-menu {
        flex-direction: column;
        align-items: center;
      }
	  
 .hostcontainer-header-row {
    display: none;
  }	  
      
      .hostcontainer-menu button {
        width: 90%;
      }
    }
    
    /* Ekstra stiller */
    .feature-highlight {
      background: linear-gradient(90deg, #3498db, #2ecc71);
      padding: 60px 20px;
      text-align: center;
      color: white;
      margin: 50px 0;
      border-radius: 15px;
    }
    
    .feature-highlight h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    
    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 30px;
    }
    
    .feature-box {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 25px;
      width: 220px;
      text-align: center;
      backdrop-filter: blur(10px);
    }
    
    .feature-box i {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: white;
    }
    
    .feature-box h3 {
      margin-bottom: 10px;
      font-size: 1.3rem;
    }
	
	
	
	
	
	
	
	
	
	
	
    /* Web Hosting Bölümü için Stil Düzeltmeleri */
    #hosting {
      padding: 20px;
    }
    
    .hosting-platform {
      margin-top: 30px;
      background: white;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      position: relative;
    }
    
    .hosting-platform::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 10px;
      background: linear-gradient(90deg, #2563eb, #0ea5e9);
    }
    
    .hosting-header {
      text-align: center;
      padding: 50px 20px 30px;
      background: linear-gradient(120deg, #f0f9ff 0%, #e6f7ff 100%);
    }
    
    .hosting-title {
      font-size: 2.2rem;
      color: #1e293b;
      margin-bottom: 15px;
      font-weight: 700;
    }
    
    .hosting-subtitle {
      font-size: 1rem;
      color: #64748b;
      max-width: 700px;
      margin: 0 auto 30px;
    }
    
    .hosting-menu {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .hosting-menu-btn {
      padding: 12px 25px;
      background-color: white;
      border: 2px solid #e2e8f0;
      border-radius: 50px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      color: #64748b;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .hosting-menu-btn:hover {
      border-color: #2563eb;
      color: #2563eb;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
    }
    
    .hosting-menu-btn.active {
      background-color: #2563eb;
      color: white;
      border-color: #2563eb;
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    }
    
    .hosting-menu-btn i {
      font-size: 1.1rem;
    }
    
    .hosting-section {
      display: none;
      animation: fadeInAnimation 0.5s ease;
      padding: 20px;
    }
    
    @keyframes fadeInAnimation {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .hosting-section.active {
      display: block;
    }
    
    .hosting-packages {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 15px;
    }
    
    .hosting-card {
      background: white;
      border-radius: 20px;
      padding: 25px;
      text-align: center;
      transition: all 0.3s ease;
      border: 2px solid #e2e8f0;
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .hosting-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      border-color: #2563eb;
    }
    
    .hosting-card.popular {
      border: 2px solid #2563eb;
      transform: scale(1.02);
      z-index: 1;
    }
    
    .hosting-card.popular:hover {
      transform: scale(1.05) translateY(-8px);
    }
    
    .popular-label {
      position: absolute;
      top: -15px;
      right: 20px;
      background: linear-gradient(90deg, #f59e0b, #f97316);
      color: white;
      padding: 8px 20px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 0.85rem;
      box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
      text-transform: uppercase;
    }
    
    .package-title {
      font-size: 1.4rem;
      margin-bottom: 20px;
      color: #1e293b;
      font-weight: 600;
    }
    
    .package-features {
      flex-grow: 1;
      margin-bottom: 20px;
    }
    
    .feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px;
      border-radius: 10px;
      transition: all 0.3s ease;
      text-align: left;
    }
    
    .feature-item:hover {
      background-color: rgba(37, 99, 235, 0.05);
    }
    
    .feature-icon {
      color: #2563eb;
      font-size: 1.1rem;
      min-width: 25px;
    }
    
    .feature-text {
      font-size: 0.95rem;
      color: #64748b;
    }
    
    .package-price {
      font-size: 2.2rem;
      font-weight: 700;
      color: #2563eb;
      margin: 20px 0;
    }
    
    .price-currency {
      font-size: 1.4rem;
      vertical-align: super;
    }
    
    .price-period {
      font-size: 1rem;
      color: #64748b;
      font-weight: normal;
    }
    
    .purchase-btn {
      display: inline-block;
      background: linear-gradient(90deg, #2563eb, #0ea5e9);
      color: white;
      padding: 14px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      width: 100%;
      margin-top: auto;
      box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    }
    
    .purchase-btn:hover {
      background: linear-gradient(90deg, #1d4ed8, #0d94d8);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    }
    
    .hosting-card.popular .purchase-btn {
      background: linear-gradient(90deg, #f59e0b, #f97316);
      box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
    }
    
    .hosting-card.popular .purchase-btn:hover {
      background: linear-gradient(90deg, #e69500, #ea580c);
    }
    
    .features-toggle-section {
      text-align: center;
      margin-top: 25px;
    }
    
    .toggle-features-btn {
      background: none;
      border: none;
      color: #2563eb;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }
    
    .toggle-features-btn:hover {
      color: #1d4ed8;
    }
    
    .additional-features-list {
      display: none;
      margin-top: 15px;
      padding: 20px;
      background-color: rgba(37, 99, 235, 0.05);
      border-radius: 15px;
      text-align: left;
    }
	
        .additional-features-list ul {
            list-style-type: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .additional-features-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: black;
            font-size: 0.95rem;
        }
        
        .additional-features-list li i {
            color: var(--success);
        }	
    
    .additional-features-list.active {
      display: block;
    }
    
    .features-grid {
      list-style-type: none;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }
    
    .feature-grid-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #64748b;
      font-size: 0.9rem;
    }
    
    .feature-grid-icon {
      color: #10b981;
    }
    
    .hosting-footer {
      text-align: center;
      padding: 25px;
      background: #f8fafc;
      border-top: 1px solid #e2e8f0;
      font-size: 0.95rem;
      color: #64748b;
    }
    
    .guarantee-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(16, 185, 129, 0.1);
      padding: 10px 20px;
      border-radius: 50px;
      color: #10b981;
      font-weight: 600;
      margin-top: 15px;
    }
    
    /* Responsive tasarım */
    @media (max-width: 992px) {
      .hosting-packages {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      }
    }
    
    @media (max-width: 768px) {
      .hosting-title {
        font-size: 1.8rem;
      }
      
      .hosting-subtitle {
        font-size: 0.95rem;
      }
      
      .hosting-menu {
        flex-direction: column;
        align-items: center;
      }
      
      .hosting-menu-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 12px 15px;
      }
      
      .hosting-packages {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
      }
      
      .package-price {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 480px) {
      .hosting-platform {
        margin: 15px auto;
        border-radius: 20px;
      }
      
      .hosting-header {
        padding: 35px 15px 20px;
      }
      
      .hosting-title {
        font-size: 1.6rem;
      }
      
      .hosting-card {
        padding: 20px 15px;
      }
      
      .purchase-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
      }
      
      .popular-label {
        font-size: 0.8rem;
        padding: 6px 15px;
        top: -12px;
      }
    }

    /* Diğer mobil uyumluluk düzenlemeleri */
    @media (max-width: 768px) {
      .top-bar .left {
        display: none;
      }
      
      .navbar .container {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .menu {
        width: 100%;
        left: 0;
        top: 100%;
        background: white;
        padding: 10px 0;
        display: none;
      }
      
      .menu.active {
        display: block;
      }
      
      .menu-item {
        width: 100%;
      }
      
      .mega-dropdown, .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        display: none;
        animation: none;
      }
      
      .dropdown-columns {
        grid-template-columns: 1fr;
      }
      
      .menu-toggle {
        position: absolute;
        right: 20px;
        top: 20px;
      }
      
      .slider-wrapper {
        height: auto;
      }
      
      .slide-image {
        display: none;
      }
    }
	
        .toggle-btn {
            background: none;
            border: none;
            color: var(--primary);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }
        
        .toggle-btn:hover {
            color: var(--primary-dark);
        }	
		
		
    /* Ek özellikler için stil düzenlemeleri */
    .features-toggle {
      text-align: center;
      margin-top: 25px;
    }
    
    .toggle-btn {
      background: none;
      border: none;
      color: #2563eb;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }
    
    .toggle-btn:hover {
      color: #1d4ed8;
    }
    
    .additional-features-list {
      display: none;
      margin-top: 15px;
      padding: 20px;
      background-color: rgba(37, 99, 235, 0.05);
      border-radius: 15px;
      text-align: left;
    }
    
    .additional-features-list.active {
      display: block;
    }
    
    .additional-features-list ul {
      list-style-type: none;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }
    
    .additional-features-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #333;
      font-size: 0.95rem;
    }
    
    .additional-features-list li i {
      color: #10b981;
    }			