      :root {
        --primary: #ec1f28; /* Brendbuka uyğun rəng kodu */
        --dark-gray: #333333;
        --light-gray: #f8f8f8;
        --white: #ffffff;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
      }

      body {
        color: var(--dark-gray);
        line-height: 1.6;
        overflow-x: hidden; /* Prevent horizontal scroll */
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Navigation Bar */
      header {
        background-color: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed; /* Changed to fixed for better user experience */
        width: 100%;
        top: 0;
        z-index: 1000;
      }

      header nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        position: relative;
        height: 100px; /* Sabit hündürlük */
      }

      .logo-placeholder {
        width: 250px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
      }

      .logo-div {
        justify-content: center;
        align-items: center;
      }

      .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
        text-decoration: none;
      }

      .logo span {
        color: black;
      }

      .nav-right-section {
        display: flex;
        align-items: center;
      }

      .nav-links {
        display: flex;
        list-style: none;
      }

      .nav-links li {
        margin-left: 30px;
      }

      .nav-links a {
        color: var(--dark-gray);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
      }

      .nav-links a:hover {
        color: var(--primary);
      }

      /* Language Switcher */
      .language-switcher {
        position: relative;
        margin-left: 30px;
      }

      .language-dropdown {
        display: flex;
        align-items: center;
        background-color: var(--white);
        border: 2px solid var(--primary);
        border-radius: 25px;
        padding: 8px 15px;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 80px;
        justify-content: center;
      }

      .language-dropdown:hover {
        background-color: var(--primary);
        color: var(--white);
      }

      .current-lang {
        font-weight: 600;
        font-size: 14px;
        margin-right: 5px;
      }

      .dropdown-arrow {
        font-size: 10px;
        transition: transform 0.3s ease;
      }

      .language-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
      }

      .language-options {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--white);
        border: 2px solid var(--primary);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        min-width: 120px;
        z-index: 1001;
      }

      .language-options.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .language-option {
        padding: 10px 15px;
        cursor: pointer;
        transition: background-color 0.2s ease;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .language-option:hover {
        background-color: var(--light-gray);
      }

      .language-option.active {
        background-color: var(--primary);
        color: var(--white);
      }

      .flag-icon {
        width: 20px;
        height: 15px;
        border-radius: 2px;
        background-size: cover;
        background-position: center;
      }

      .flag-az {
        background-image: linear-gradient(
          to bottom,
          #0099cc 33%,
          #ff0000 33%,
          #ff0000 66%,
          #00cc00 66%
        );
      }

      .flag-en {
        background-image: linear-gradient(45deg, #012169 25%, transparent 25%),
          linear-gradient(-45deg, #012169 25%, transparent 25%),
          linear-gradient(45deg, transparent 75%, #012169 75%),
          linear-gradient(-45deg, transparent 75%, #012169 75%);
        background-size: 8px 8px;
        background-color: #ffffff;
        position: relative;
      }

      .flag-en::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          to bottom,
          #ce1126 20%,
          #ffffff 20%,
          #ffffff 40%,
          #ce1126 40%,
          #ce1126 60%,
          #ffffff 60%,
          #ffffff 80%,
          #ce1126 80%
        );
        mix-blend-mode: multiply;
      }

      .flag-ru {
        background: linear-gradient(
          to bottom,
          #ffffff 33%,
          #0039a6 33%,
          #0039a6 66%,
          #d52b1e 66%
        );
      }

      .mobile-menu {
        display: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--dark-gray);
        z-index: 1002;
      }

      /* Hero Section Styling */
      .hero {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        background-color: #ffffff; /* Explicitly white */
        padding: 150px 0 100px; /* Adjusted spacing */
        margin-top: 100px; /* Space for fixed header */
      }
      
      .hero-content {
        position: relative;
        padding: 0 20px;
      }

      .hero-content h1 {
        font-size: 56px;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--primary);
      }

      .hero-content p {
        font-size: 20px;
        max-width: 700px;
        margin: 0 auto 40px;
        color: var(--dark-gray);
      }

      .cta-button {
        display: inline-block;
        background-color: var(--primary);
        color: var(--white);
        padding: 15px 35px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        transition: transform 0.3s, box-shadow 0.3s;
        border: none;
        cursor: pointer;
        font-size: 16px;
      }

      .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(236, 31, 40, 0.4);
      }

      /* About Section */
      .about {
        padding: 70px 0;
        text-align: center;
      }

      .section-title {
        font-size: 36px;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
      }

      .section-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background-color: var(--primary);
      }

      .about p {
        max-width: 800px;
        margin: 0 auto;
        font-size: 18px;
      }

      /* Services */
      .services-container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 70px 0;
      }

      .services-title {
        color: var(--primary);
        text-align: center;
        margin-bottom: 50px;
        font-size: 2.5rem;
      }

      .hexagon-grid {
        display: grid;
        grid-template-columns: repeat(3, 160px);
        grid-column-gap: 30px;
        justify-content: center;
        margin: 0 auto;
        padding: 20px 0;
        position: relative;
        min-height: 400px;
      }

      .hexagon-grid::after {
        content: "";
        display: block;
        grid-column: 1 / -1;
        height: 20px;
      }

      .hexagon:nth-child(4),
      .hexagon:nth-child(5),
      .hexagon:nth-child(6) {
        margin-top: -25px;
        transform: translateX(95px);
      }

      .hexagon {
        position: relative;
        width: 160px;
        height: 180px;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        background-color: var(--primary);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.7s ease;
        cursor: pointer;
        overflow: visible;
        z-index: 1;
        margin: 0;
      }

      .hexagon:hover,
      .hexagon.active {
        transform: scale(1.8);
        z-index: 1000;
        box-shadow: 0 20px 60px rgba(236, 31, 40, 0.5);
        background: var(--primary);
        clip-path: none;
        border-radius: 20px;
        width: 280px;
        height: 180px;
      }

      .hexagon:nth-child(4):hover,
      .hexagon:nth-child(5):hover,
      .hexagon:nth-child(6):hover,
      .hexagon:nth-child(4).active,
      .hexagon:nth-child(5).active,
      .hexagon:nth-child(6).active {
        transform: translateX(95px) scale(1.8);
        clip-path: none;
        border-radius: 20px;
        width: 280px;
        height: 180px;
      }

      .hexagon-grid:has(.hexagon:hover) .hexagon:not(:hover),
      .hexagon-grid:has(.hexagon.active) .hexagon:not(.active) {
        transform: translateX(200px) scale(0.8);
        opacity: 0.3;
        transition: all 1.5s ease;
      }

      .hexagon-grid:has(.hexagon:hover) .hexagon:nth-child(4):not(:hover),
      .hexagon-grid:has(.hexagon:hover) .hexagon:nth-child(5):not(:hover),
      .hexagon-grid:has(.hexagon:hover) .hexagon:nth-child(6):not(:hover),
      .hexagon-grid:has(.hexagon.active) .hexagon:nth-child(4):not(.active),
      .hexagon-grid:has(.hexagon.active) .hexagon:nth-child(5):not(.active),
      .hexagon-grid:has(.hexagon.active) .hexagon:nth-child(6):not(.active) {
        transform: translateX(295px) scale(0.8);
        opacity: 0.3;
      }

      .hexagon::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.2);
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        z-index: -1;
        transition: all 1.5s ease;
      }

      .hexagon:hover::before,
      .hexagon.active::before {
        background-color: transparent;
        clip-path: none;
      }

      .hexagon-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
        padding: 20px 10px;
        text-align: center;
        transition: all 0.4s ease;
      }

      .hexagon-icon {
        font-size: 2.5rem;
        color: white;
        transition: all 0.4s ease;
        margin-bottom: 15px;
        display: block;
      }

      .hexagon-title {
        font-family: "Poppins", sans-serif;
        color: white;
        font-weight: bold;
        font-size: 1.2rem;
        text-align: center;
        padding: 0 15px;
        transition: all 0.4s ease;
        margin: 0;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
      }

      .hexagon:hover .hexagon-icon,
      .hexagon.active .hexagon-icon {
        opacity: 0;
        transform: translateY(-20px);
      }

      .hexagon:hover .hexagon-title,
      .hexagon.active .hexagon-title {
        opacity: 0;
        transform: translateY(-20px);
      }

      .hexagon:hover .hexagon-content,
      .hexagon.active .hexagon-content {
        justify-content: center;
        align-items: center;
      }

      .hexagon-description {
        font-family: "Poppins", sans-serif;
        color: white;
        font-size: 0.5rem;
        text-align: left;
        padding: 0 15px;
        width: 100%;
        line-height: 1.5;
        opacity: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, calc(-50% + 30px));
        transition: all 0.4s ease 0.2s;
        max-width: 90%;
        word-wrap: break-word;
        hyphens: auto;
      }

      .hexagon-description ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .hexagon-description li {
        margin-bottom: 5px;
        padding-left: 15px;
        position: relative;
      }

      .hexagon-description li:last-child {
        margin-bottom: 0;
      }

      .hexagon-description li::before {
        content: "•";
        position: absolute;
        left: 0;
        top: 0;
        color: white;
        font-weight: bold;
      }

      .hexagon:hover .hexagon-description,
      .hexagon.active .hexagon-description {
        opacity: 1;
        transform: translate(-50%, -50%);
      }

      /* Why Choose Us Section */
      .why-choose {
        padding: 100px 0;
        background-color: var(--light-gray);
      }

      .why-choose-title {
        text-align: center;
        margin-bottom: 60px;
      }

      .benefits {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 900px;
        margin: 0 auto;
        gap: 30px;
      }

      .benefit {
        flex-basis: calc(33.333% - 30px);
        min-width: 250px;
        padding: 20px;
        text-align: center;
        background-color: var(--white);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.5s ease, background-color 0.5s ease,
          box-shadow 0.5s ease, color 0.5s ease;
      }

      .benefit:hover {
        transform: scale(1.05);
        background-color: var(--primary);
        box-shadow: 0 10px 25px rgba(236, 31, 40, 0.3);
      }

      .benefit-icon {
        font-size: 30px;
        color: var(--primary);
        margin-bottom: 15px;
        transition: color 0.5s ease;
      }

      .benefit-title {
        font-size: 18px;
        margin-bottom: 10px;

        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.5s ease;
      }

      .benefit-description {
        font-size: 14px;
        color: #666;
        transition: color 0.5s ease;
      }

      .benefit:hover .benefit-icon,
      .benefit:hover .benefit-title,
      .benefit:hover .benefit-description {
        color: var(--white);
      }

      /* Footer */
      footer {
        background-color: var(--dark-gray);
        color: var(--white);
        padding: 50px 0 20px;
      }

      .footer-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 40px;
        text-align: left;
      }

      .footer-info {
        flex: 1;
        min-width: 250px;
        margin: 20px;
      }

      .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
      }

      .footer-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 30px;
        height: 2px;
        background-color: var(--primary);
      }

      .footer-links {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 10px;
      }

      .footer-links a {
        color: #ddd;
        text-decoration: none;
        transition: color 0.3s;
      }

      .footer-links a:hover {
        color: var(--primary);
      }

      .footer-socials {
        margin-top: 20px;
        display: flex;
        gap: 15px;
      }

      .footer-socials a {
        color: var(--white);
        font-size: 24px;
        transition: color 0.3s, transform 0.3s;
      }

      .footer-socials a:hover {
        color: var(--primary);
        transform: scale(1.1);
      }

      .footer-bottom {
        border-top: 1px solid #444;
        padding-top: 20px;
        font-size: 14px;
        color: #aaa;
        text-align: center;
      }

      /* ===== RESPONSIVE STYLES ===== */
      @media (max-width: 768px) {
        .hero {
          padding: 80px 0 60px;
          margin-top: 100px;
        }

        .nav-right-section {
          display: none;
        }
        .nav-links {
          display: none;
          flex-direction: column;
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background-color: var(--white);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
          padding: 20px 0;
          z-index: 999;
        }

        .nav-links.active {
          display: flex;
        }

        .nav-links li {
          margin: 10px 0;
          text-align: center;
        }

        .nav-links a {
          display: block;
          padding: 10px 0;
        }

        .nav-links .language-switcher {
          margin: 20px auto 0;
        }

        .mobile-menu {
          display: block;
        }

        .hero-content h1 {
          font-size: 42px;
          line-height: 1.2;
        }

        .hero-content p {
          font-size: 18px;
        }

        .section-title {
          font-size: 28px;
        }

        .hexagon-grid {
          grid-template-columns: repeat(2, 140px);
          grid-column-gap: 25px;
          grid-row-gap: 20px;
          justify-content: center;
        }

        .hexagon {
          height: 160px;
          width: 140px;
        }

        .hexagon:nth-child(n) {
          margin-top: 0;
          transform: none;
        }

        .hexagon-grid:has(.hexagon:hover) .hexagon:not(:hover),
        .hexagon-grid:has(.hexagon.active) .hexagon:not(:active) {
            transform: scale(0.8); /* Simplified transform for mobile */
            opacity: 0.3;
        }

        .hexagon:hover,
        .hexagon.active {
            transform: scale(1.6); /* Adjusted scale for tablet */
            clip-path: none;
            border-radius: 20px;
            width: 270px;
            height: 170px;
        }
        
        .hexagon:nth-child(n):hover, .hexagon:nth-child(n).active {
            transform: scale(1.6); /* Ensure no translateX is applied */
        }

        .hexagon-title {
          font-size: 1rem;
        }

        .hexagon-description {
          font-size: 0.4rem;
        }

        .benefits {
          flex-direction: column;
          align-items: center;
        }

        .benefit {
          margin-bottom: 20px;
          width: 90%;
          max-width: 350px;
        }

        .footer-content {
          flex-direction: column;
          align-items: center;
          text-align: center;
        }
        .footer-info {
          margin: 15px 0;
        }

        .footer-title::after {
          left: 50%;
          transform: translateX(-50%);
        }
        .footer-socials {
          justify-content: center;
        }
        
        /* Make footer contact list centered on mobile */
        .footer-content .footer-info:last-child .footer-links li {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-align: left;
        }
      }

      @media (max-width: 480px) {
        .logo-placeholder {
          width: 200px;
          height: 50px;
        }
        
        .logo-placeholder img {
            height: 50px !important;
        }

        .hero {
          padding-top: 60px; 
          padding-bottom: 40px;
        }
        
        .hero-content h1 {
            font-size: 32px;
        }

        .hexagon-grid {
          grid-template-columns: 1fr;
          grid-gap: 20px;
          justify-items: center;
        }
        .hexagon:nth-child(n) {
          margin-top: 0;
          transform: none;
        }

        .services-title {
          font-size: 2rem;
          margin-bottom: 30px;
        }

        .hexagon {
          height: 145px;
          width: 130px;
        }

        .hexagon:hover,
        .hexagon.active,
        .hexagon:nth-child(n):hover, 
        .hexagon:nth-child(n).active {
          width: 90vw;
          max-width: 300px;
          height: 280px;
          transform: scale(1); /* No scaling, just resize */
        }
        
        .hexagon:hover .hexagon-description,
        .hexagon.active .hexagon-description {
           font-size: 0.8rem;
        }

        .hexagon-icon {
          font-size: 2rem;
        }

        .hexagon-title {
          font-size: 1rem;
        }
      }
