/* ============================================ */
/* ANA CONTAINER */
/* ============================================ */
.main-container {
    width: 100%;
    max-width: 1920px;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background: #fff;
    margin: 0 auto;
  }
  
  /* Mobilde tüm container'lara padding ekle */
  @media (max-width: 767.98px) {
    .container {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  
  /* ============================================ */
  /* HEADER - Logo ve CTA Butonu */
  /* ============================================ */
  .header-wrapper {
    padding-top: 19px;
    padding-bottom: 19px;
  }
  
  .header-logo {
    width: 186px;
    height: 64px;
    background: url('img/socify-logo.png') no-repeat center;
    background-size: contain;
  }
  
  .header-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 183px;
    height: 48px;
    padding: 0 16px;
    line-height: 1;
    border-radius: 45px;
    background: #0866ff;
    box-shadow: 0px 21px 27px -10px rgba(8,102,255,0.47);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .header-cta-button:hover {
    background: #0654cc;
    transform: translateY(-2px);
    box-shadow: 0px 25px 35px -10px rgba(8,102,255,0.55);
    color: #fff;
  }
  
  .header-cta-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    display: inline-flex;
    align-items: center;
  }
  
  .header-cta-icon {
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
  }
  
  @media (max-width: 991.98px) {
    .header-wrapper {
      padding-top: 15px;
      padding-bottom: 15px;
    }
    
    .header-logo {
      width: 150px;
      height: 52px;
    }
    
    .header-cta-button {
      width: auto;
      min-width: 160px;
      height: 46px;
      padding: 12px 20px;
      font-size: 13px;
      gap: 4px;
    }
    
    .header-cta-text {
      font-size: 13px;
    }
    
    .header-cta-icon {
      width: 19px;
      height: 19px;
    }
  }
  
  @media (max-width: 767.98px) {
    .header-logo {
      width: 120px;
      height: 42px;
    }
    
    .header-cta-button {
      width: auto;
      min-width: 140px;
      height: 44px;
      font-size: 13px;
      padding: 12px 20px;
      gap: 4px;
    }
    
    .header-cta-icon {
      width: 18px;
      height: 18px;
    }
    
    .header-cta-text {
      font-size: 13px;
    }
  }
  
  /* ============================================ */
  /* HERO SECTION */
  /* ============================================ */
  .hero-section-wrapper {
    padding: 0;
  }
  
  .hero-section-bg {
    min-height: 380px;
    border-radius: 30px;
    background: #00318f;
    box-shadow: 14px 17px 40px 4px rgba(112,144,176,0.08);
    padding: 0px 40px;
    display: flex;
    align-items: center;
  }
  
  .hero-section-bg > .row {
    width: 100%;
    height: 100%;
  }
  
  .hero-cta-button {
    padding: 12px 24px;
    border-radius: 45px;
    background: #0866ff;
    box-shadow: 0px 21px 27px -10px rgba(8,102,255,0.47);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .hero-cta-button:hover {
    background: #0754d4;
    transform: translateY(-2px);
    box-shadow: 0px 23px 30px -10px rgba(8,102,255,0.6);
  }
  
  .hero-button-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
  }
  
  .hero-button-icon {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
  }
  
  .hero-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.5;
  }
  
  .hero-image-wrapper {
    text-align: center;
  }
  
  .hero-main-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .hero-title {
      font-size: 32px;
    }
    
    .hero-description {
      font-size: 14px;
    }
  }
  
  @media (max-width: 991.98px) {
    .hero-section-bg {
      padding: 50px 30px;
      min-height: auto;
    }
    
    .hero-title {
      font-size: 32px;
    }
    
    .hero-description {
      font-size: 15px;
    }
    
    .hero-cta-button {
      height: 46px;
      padding: 12px 20px;
      gap: 4px;
    }
    
    .hero-button-text {
      font-size: 13px;
    }
    
    .hero-button-icon {
      width: 19px;
      height: 19px;
    }
  }
  
  @media (max-width: 767.98px) {
    .hero-section-wrapper {
      padding-left: 10px;
      padding-right: 10px;
    }
    
    .hero-section-bg {
      padding: 40px 20px;
      min-height: auto;
      border-radius: 20px;
    }
    
    .hero-section-bg .row > div {
      text-align: center;
    }
    
    .hero-title {
      font-size: 24px;
      line-height: 1.3;
    }
    
    .hero-description {
      font-size: 14px;
      margin-bottom: 20px;
    }
    
    .hero-cta-button {
      padding: 12px 20px;
      height: 44px;
      width: auto;
      max-width: 280px;
      gap: 4px;
      margin: 0 auto;
      display: inline-flex;
    }
    
    .hero-button-text {
      font-size: 13px;
      font-weight: 600;
    }
    
    .hero-button-icon {
      width: 18px;
      height: 18px;
    }
    
    .hero-image-wrapper {
      margin-top: 30px;
    }
  }
  
  /* ============================================ */
  /* SOSYAL MEDYA İKONLARI BÖLÜMÜ - Hero Section Sağ Taraf */
  /* ============================================ */
  .social-icons-right {
    width: 100%;
    min-height: 458px;
    position: relative;
  }
  
  .social-icon-instagram {
    width: 115.09px;
    height: 113.61px;
    position: absolute;
    right: 0;
    top: 0;
    border-bottom-right-radius: 50px;
    z-index: 3;
  }
  
  .social-icon-instagram img {
    width: 115.09px;
    height: 113.61px;
    object-fit: cover;
  }
  
  .social-icons-group {
    width: 100%;
    min-height: 458px;
    position: relative;
  }
  
  .social-icon-facebook {
    width: 194px;
    height: 199px;
    position: absolute;
    left: 20px;
    top: 53px;
    padding: 10px;
    border-bottom-right-radius: 50px;
    z-index: 2;
  }
  
  .social-icon-facebook img {
    width: 75.73px;
    height: 77.62px;
    object-fit: cover;
  }
  
  .social-arrow {
    width: 193px;
    height: 113px;
    position: absolute;
    left: -238px;
    top: 114px;
    background: url('img/arrow.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
  }
  
  .social-bg-svg {
    position: absolute;
    left: -1px;
    top: -1px;
    width: 1058px;
    height: 862px;
    max-width: 100%;
    z-index: 0;
  }
  
  .social-icon-twitter {
    width: 126.19px;
    height: 126.19px;
    position: absolute;
    left: 291.08px;
    top: 131.55px;
    border-bottom-right-radius: 50px;
    z-index: 2;
  }
  
  .social-icon-twitter img {
    width: 126.19px;
    height: 126.19px;
    object-fit: cover;
  }
  
  .social-icon-img {
    width: 100%;
    height: auto;
  }
  
  .social-decor-img {
    width: 343px;
    height: 381px;
    position: absolute;
    left: 62px;
    top: 34px;
    object-fit: none;
    z-index: 1;
    max-width: 100%;
  }
  
  .social-decor-img-small {
    width: 103px;
    height: 101px;
    position: absolute;
    left: 412px;
    top: 334px;
    object-fit: cover;
    z-index: 2;
    max-width: 100%;
  }
  
  .social-check-icon {
    width: 82.17px;
    height: 80.53px;
    filter: drop-shadow(-10px 10px 30px rgba(0,0,0,0.05));
    z-index: 3;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .social-icons-right {
      min-height: auto;
    }
    
    .social-icons-group {
      min-height: auto;
    }
    
    .social-bg-svg {
      width: 100%;
      height: auto;
    }
  }
  
  @media (max-width: 768px) {
    .social-icon-instagram {
      position: relative;
      right: auto;
      top: auto;
      margin-bottom: 20px;
    }
    
    .social-icons-group {
      position: relative;
      min-height: auto;
    }
    
    .social-icon-facebook,
    .social-icon-twitter {
      position: relative;
      left: auto;
      top: auto;
      margin: 10px 0;
    }
    
    .social-arrow {
      display: none;
    }
    
    .social-bg-svg {
      display: none;
    }
    
    .social-decor-img,
    .social-decor-img-small {
      position: relative;
      left: auto;
      top: auto;
      max-width: 100%;
      height: auto;
      margin: 10px 0;
    }
  }
  
  /* ============================================ */
  /* POPÜLER HİZMETLER BÖLÜMÜ */
  /* ============================================ */
  .popular-services-wrapper {
    padding: 0;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  
  .popular-services-badge-wrapper {
    margin-bottom: 20px;
  }
  
  .popular-services-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 373px;
    height: 42px;
    padding: 14px 8px;
    border-radius: 50px;
    background: rgba(8,102,255,0.1);
  }
  
  .popular-services-badge-text {
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #0866ff;
    margin: 0;
    letter-spacing: 0.06em;
  }
  
  .popular-services-header {
    margin-bottom: 38px;
  }
  
  .popular-services-title {
    font-size: 45px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
  }
  
  .popular-services-description {
    font-size: 14px;
    font-weight: 500;
    color: rgba(119,119,119,0.6);
    margin: 0 auto;
  }
  
  .service-card {
    width: 100%;
    max-width: 197px;
    height: 197px;
    border-radius: 34px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  }
  
  @media (max-width: 767.98px) {
    .service-card {
      max-width: 100%;
    }
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
  text-decoration: none;
  }
  
  .service-card-content {
    gap: 9px;
    width: 100%;
    height: 100%;
  }
  
  .service-card-icon {
      width: 80px;
      height: 80px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 60px;
  }
  
  .service-card-text {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 0;
  }
  
  .service-card-instagram {
    background: rgba(223,35,139,0.12);
  }
  
  .service-card-icon-instagram,
  .service-card-text-instagram {
    color: #df238b;
  }
  
  .service-card-facebook {
    background: rgba(29,146,207,0.12);
  }
  
  .service-card-icon-facebook,
  .service-card-text-facebook {
    color: #1d92cf;
  }
  
  .service-card-spotify {
    background: rgba(28,215,96,0.12);
  }
  
  .service-card-icon-spotify,
  .service-card-text-spotify {
    color: #1cd760;
  }
  
  .service-card-tiktok {
    background: rgba(208,198,226,0.12);
  }
  
  .service-card-icon-tiktok,
  .service-card-text-tiktok {
    color: #60439a;
  }
  
  /* Yeni platform kartları */
  
  .service-card-twitter {
    background: rgba(29,161,242,0.12);
  }
  
  .service-card-icon-twitter,
  .service-card-text-twitter {
    color: #1da1f2;
  }
  
  .service-card-youtube {
    background: rgba(255,0,0,0.08);
  }
  
  .service-card-icon-youtube,
  .service-card-text-youtube {
    color: #ff0000;
  }
  
  .service-card-discord {
    background: rgba(88,101,242,0.1);
  }
  
  .service-card-icon-discord,
  .service-card-text-discord {
    color: #5865f2;
  }
  
  .service-card-google {
    background: rgba(234,67,53,0.08);
  }
  
  .service-card-icon-google,
  .service-card-text-google {
    color: #ea4335;
  }
  
  .service-card-snapchat {
    background: rgba(255,252,0,0.3);
  }
  
  .service-card-icon-snapchat,
  .service-card-text-snapchat {
    color: #fbbc04;
  }
  
  .service-card-linkedin {
    background: rgba(10,102,194,0.08);
  }
  
  .service-card-icon-linkedin,
  .service-card-text-linkedin {
    color: #0a66c2;
  }
  
  .service-card-threads {
    background: rgba(0,0,0,0.04);
  }
  
  .service-card-icon-threads,
  .service-card-text-threads {
    color: #111111;
  }
  
  .service-card-twitch {
    background: rgba(145,70,255,0.08);
  }
  
  .service-card-icon-twitch,
  .service-card-text-twitch {
    color: #9146ff;
  }
  
  .service-card-telegram {
    background: rgba(34,158,217,0.1);
  }
  
  .service-card-icon-telegram,
  .service-card-text-telegram {
    color: #229ed9;
  }
  
  .service-card-whatsapp {
    background: rgba(37,211,102,0.08);
  }
  
  .service-card-icon-whatsapp,
  .service-card-text-whatsapp {
    color: #25d366;
  }
  
  .service-card-kick {
    background: rgba(83,255,0,0.08);
  }
  
  .service-card-icon-kick,
  .service-card-text-kick {
    color: #53ff00;
  }
  
  .service-card-deezer {
    background: rgba(155,92,255,0.08);
  }
  
  .service-card-icon-deezer,
  .service-card-text-deezer {
    color: #9b5cff;
  }
  
  .view-all-services-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 50px;
    border-radius: 45px;
    background: #0866ff;
    box-shadow: 0px 21px 27px -10px rgba(8,102,255,0.47);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 30px;
  }
  
  .view-all-services-button:hover {
    background: #0754d4;
    transform: translateY(-2px);
    box-shadow: 0px 23px 30px -10px rgba(8,102,255,0.6);
  }
  
  .view-all-services-button-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
  }
  
  .view-all-services-button-icon {
    flex-shrink: 0;
    font-size: 16px;
    color: #fff;
  }
  
  .view-all-services-button-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .service-card {
      width: 100%;
      max-width: 197px;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 991.98px) {
    .popular-services-wrapper {
      margin-top: 40px;
      margin-bottom: 40px;
    }
    
    .popular-services-badge {
      min-width: auto;
      width: 100%;
      max-width: 373px;
      padding: 12px 16px;
    }
    
    .popular-services-title {
      font-size: 28px;
    }
    
    .popular-services-description {
      font-size: 14px;
    }
    
    .service-card {
      width: 100%;
      max-width: 197px;
      height: 197px;
    }
    
    .view-all-services-button {
      height: 46px;
      padding: 12px 20px;
      gap: 4px;
    }
    
    .view-all-services-button-text {
      font-size: 13px;
    }
    
    .view-all-services-button-icon {
      width: 19px;
      height: 19px;
    }
  }
  
  @media (max-width: 767.98px) {
    .popular-services-wrapper {
      margin-top: 30px;
      margin-bottom: 30px;
    }
    
    .popular-services-badge {
      min-width: auto;
      width: 100%;
      max-width: 100%;
      padding: 10px 14px;
      height: auto;
    }
    
    .popular-services-badge-text {
      font-size: 11px;
    }
    
    .popular-services-title {
      font-size: 22px;
      margin-bottom: 12px;
    }
    
    .popular-services-description {
      font-size: 13px;
      margin-bottom: 20px;
    }
    
    .popular-services-wrapper .row.g-4 {
      --bs-gutter-x: 0.75rem;
      --bs-gutter-y: 0.75rem;
    }
    
    .popular-services-wrapper .row {
      margin-left: 0;
      margin-right: 0;
    }
    
    .popular-services-wrapper .row > [class*="col-"] {
      padding-left: 8px;
      padding-right: 8px;
    }
    
    .service-card {
      width: 100%;
      max-width: 100%;
      height: 100px;
      padding: 12px 8px;
      margin-bottom: 0;
      border-radius: 20px;
    }
    
    .service-card-content {
      gap: 6px;
    }
    
    .service-card-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 4px;
      font-size: 24px;
    }
    
    .service-card-icon svg {
      width: 40px;
      height: 40px;
    }
    
    .service-card-text {
      font-size: 11px;
      font-weight: 500;
      line-height: 1.2;
    }
    
    .view-all-services-button {
      width: auto;
      max-width: 280px;
      height: 44px;
      padding: 12px 20px;
      margin: 20px auto 0;
      gap: 4px;
      display: flex;
    }
    
    .view-all-services-button-content {
      gap: 4px;
    }
    
    .view-all-services-button-text {
      font-size: 13px;
      font-weight: 600;
    }
    
    .view-all-services-button-icon {
      width: 18px;
      height: 18px;
    }
  }
  
  /* ============================================ */
  /* KULLANICI PROFİLİ KARTI BÖLÜMÜ */
  /* ============================================ */
  .user-profile-section-wrapper {
    padding: 0;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  
  .user-profile-bg {
    width: 100%;
    min-height: 464px;
    border-radius: 30px;
    background-color: #00318f;
    background-image: url('img/bg-new.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
  }
  
  .user-profile-content {
    padding: 0px;
  }
  
  
  .user-profile-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    padding: 16px;
    border-radius: 20px;
    background: #f2f6f9;
    width: fit-content;
  }
  
  .user-profile-tab {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 14px 28px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .user-profile-tab-active {
    background: #fff;
    box-shadow: 2px 2px 4px 0 rgba(217, 225, 231, 0.46);
    border-radius: 10px;
  }
  
  .user-profile-tab-text {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin: 0;
  }
  
  .user-profile-tab-active .user-profile-tab-text {
    color: #8e972b;
  }
  
  .user-profile-tab:not(.user-profile-tab-active) .user-profile-tab-text {
    color: #434d56;
  }
  
  .user-profile-tabs-content-wrapper {
    position: relative;
    min-height: 200px;
    margin-top: 30px;
  }
  
  .user-profile-tabs-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .user-profile-tabs-content.active {
    display: block;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .user-profile-tabs-title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .user-profile-tabs-description {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  .user-profile-tabs-cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 45px;
    background: #0866ff;
    box-shadow: 0px 21px 27px -10px rgba(8,102,255,0.47);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .user-profile-tabs-cta-button:hover {
    background: #0754d4;
    transform: translateY(-2px);
    box-shadow: 0px 23px 30px -10px rgba(8,102,255,0.6);
  }
  
  .user-profile-tabs-cta-icon {
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    color: #fff;
  }
  
  .user-profile-tabs-cta-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
  }
  
  .user-profile-tabs-image {
    width: 75%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
  
  .user-profile-right {
    padding-left: 40px;
  }
  
  .user-profile-text-content {
    color: #fff;
  }
  
  .user-profile-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .user-profile-description {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 488px;
  }
  
  .user-profile-cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 181px;
    height: 48px;
    border-radius: 45px;
    background: #0866ff;
    box-shadow: 0px 21px 27px -10px rgba(8,102,255,0.47);
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 4px;
    margin-bottom: 20px;
  }
  
  .user-profile-cta-button:hover {
    background: #0754d4;
    transform: translateY(-2px);
    box-shadow: 0px 23px 30px -10px rgba(8,102,255,0.6);
  }
  
  .user-profile-cta-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
  }
  
  .user-profile-cta-icon {
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    color: #fff;
  }
  
  .user-profile-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin: 0;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .user-profile-title {
      font-size: 32px;
    }
    
    .user-profile-description {
      font-size: 14px;
    }
    
    .user-profile-tabs-title {
      font-size: 32px;
    }
    
    .user-profile-tabs-description {
      font-size: 14px;
    }
    
    .user-profile-right {
      padding-left: 20px;
    }
  }
  
  @media (max-width: 991.98px) {
    .user-profile-section-wrapper {
      margin-top: 40px;
      margin-bottom: 40px;
    }
    
    .user-profile-bg {
      border-radius: 20px;
    }
    
    .user-profile-content {
      padding: 50px 30px;
    }
    
    .user-profile-tabs {
      width: 100%;
      max-width: 436px;
      padding: 12px;
    }
    
    .user-profile-tab {
      padding: 12px 20px;
    }
    
    .user-profile-tab-text {
      font-size: 14px;
    }
    
    .user-profile-tabs-title {
      font-size: 32px;
    }
    
    .user-profile-tabs-description {
      font-size: 15px;
    }
    
    .user-profile-title {
      font-size: 32px;
    }
    
    .user-profile-description {
      font-size: 15px;
    }
    
    .user-profile-tabs-image {
      width: 85%;
    }
    
    .user-profile-tabs-cta-button {
      height: 46px;
      padding: 12px 20px;
      gap: 4px;
    }
    
    .user-profile-tabs-cta-text {
      font-size: 13px;
    }
    
    .user-profile-tabs-cta-icon {
      width: 19px;
      height: 19px;
    }
    
    .user-profile-cta-button {
      height: 46px;
      padding: 12px 20px;
      gap: 4px;
    }
    
    .user-profile-cta-text {
      font-size: 13px;
    }
    
    .user-profile-cta-icon {
      width: 19px;
      height: 19px;
    }
  }
  
  @media (max-width: 767.98px) {
    .user-profile-section-wrapper {
      margin-top: 30px;
      margin-bottom: 30px;
      padding-left: 20px;
      padding-right: 20px;
    }
    
    .user-profile-bg {
      height: auto;
      min-height: auto;
      border-radius: 20px;
    }
    
    .user-profile-content {
      padding: 30px 20px;
    }
    
    .user-profile-tabs {
      width: 100%;
      max-width: 100%;
      padding: 10px;
      gap: 8px;
      flex-wrap: wrap;
    }
    
    .user-profile-tab {
      flex: 1;
      min-width: 120px;
      padding: 10px 16px;
      justify-content: center;
    }
    
    .user-profile-tab-text {
      font-size: 13px;
    }
    
    .user-profile-tabs-content-wrapper {
      margin-top: 20px;
      min-height: auto;
    }
    
    .user-profile-tabs-title {
      font-size: 24px;
      margin-bottom: 15px;
    }
    
    .user-profile-tabs-description {
      font-size: 14px;
      margin-bottom: 20px;
    }
    
    .user-profile-tabs-cta-button {
      width: auto;
      max-width: 280px;
      height: 44px;
      padding: 12px 20px;
      gap: 4px;
      margin: 0 auto;
      display: flex;
    }
    
    .user-profile-tabs-cta-text {
      font-size: 13px;
      font-weight: 600;
    }
    
    .user-profile-tabs-cta-icon {
      width: 18px;
      height: 18px;
    }
    
    .user-profile-right {
      padding-left: 0;
      margin-top: 30px;
    }
    
    .user-profile-title {
      font-size: 24px;
      margin-bottom: 15px;
    }
    
    .user-profile-description {
      font-size: 14px;
      max-width: 100%;
      margin-bottom: 20px;
    }
    
    .user-profile-cta-button {
      width: auto;
      max-width: 280px;
      height: 44px;
      padding: 12px 20px;
      gap: 4px;
      margin: 0 auto;
      display: flex;
    }
    
    .user-profile-cta-text {
      font-size: 13px;
      font-weight: 600;
    }
    
    .user-profile-cta-icon {
      width: 18px;
      height: 18px;
    }
    
    .user-profile-tabs-image {
      width: 100%;
      max-width: 300px;
    }
  }
  
  /* User Profile Card Styles */
  .user-profile-card-container {
    width: 461px;
    height: 458.86px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
  }
  
  .user-profile-card-circle-wrapper {
    width: 454.58px;
    height: 458.86px;
    position: relative;
  }
  
  .user-profile-card-circle {
    width: 454.58px;
    height: 454.58px;
  }
  
  .user-profile-card-inner {
    width: 327.3px;
    height: 426.77px;
    position: absolute;
    left: 66.32px;
    top: 32.09px;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(to bottom, #fff 0%, #fff 94.58%);
    box-shadow: 0px -18px 24px 0 rgba(118,118,118,0.08);
  }
  
  .user-profile-card-avatar {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 100.5px;
    top: 29.5px;
    border-radius: 100px;
  }
  
  .user-profile-card-name {
    position: absolute;
    left: 97px;
    top: 144px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #1a2128;
    margin: 0;
  }
  
  .user-profile-card-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 21px;
    top: 196px;
    gap: 12px;
    border-radius: 16px;
    border: 1px solid #f2f6f9;
  }
  
  .user-profile-stat-item {
    flex-grow: 0;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .user-profile-stat-number {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #1a2128;
    margin: 0;
  }
  
  .user-profile-stat-label {
    font-size: 12px;
    text-align: center;
    color: #434d56;
    margin: 0;
  }
  
  .user-profile-card-images-row {
    width: 264px;
    height: 84px;
    position: relative;
  }
  
  .user-profile-card-image-placeholder {
    width: 84px;
    height: 84px;
    position: absolute;
    border-radius: 16px;
    background: #f2f6f9;
  }
  
  .user-profile-card-images-row .user-profile-card-image-placeholder:nth-child(1) {
    left: 20.5px;
    top: 0;
  }
  
  .user-profile-card-images-row .user-profile-card-image-placeholder:nth-child(2) {
    left: 110.5px;
    top: 0;
  }
  
  .user-profile-card-images-row .user-profile-card-image-placeholder:nth-child(3) {
    left: 200.5px;
    top: 0;
  }
  
  .user-profile-card-images-row-gradient .user-profile-card-image-placeholder {
    background: linear-gradient(to bottom, #f7fafb 0%, rgba(247,250,251,0) 29.69%);
  }
  
  .user-profile-card-images-row-gradient .user-profile-card-image-placeholder:nth-child(1) {
    top: 90px;
  }
  
  .user-profile-card-images-row-gradient .user-profile-card-image-placeholder:nth-child(2) {
    top: 90px;
  }
  
  .user-profile-card-images-row-gradient .user-profile-card-image-placeholder:nth-child(3) {
    top: 90px;
  }
  
  .user-profile-card-icon {
    width: 15.69px;
    height: 17.11px;
    position: absolute;
  }
  
  .user-profile-card-icon-small {
    width: 20px;
    height: 10px;
    position: absolute;
  }
  
  /* Background Images and Decorations */
  .user-profile-bg-overlay {
    width: 1217px;
    height: 464px;
    position: absolute;
    left: 405.5px;
    top: 0;
    opacity: 0.2;
    object-fit: none;
    mix-blend-mode: overlay;
    z-index: 1;
  }
  
  .user-profile-bg-svg {
    position: absolute;
    left: 374.69px;
    top: 50px;
    z-index: 1;
  }
  
  .user-profile-decor-image {
    width: 243.97px;
    height: 224.58px;
    position: absolute;
    left: 358.22px;
    top: 166.59px;
    object-fit: cover;
    z-index: 2;
  }
  
  .user-profile-left{
      display: flex;
      justify-content: center;
  }
  
  .user-profile-left-images {
    width: 600px;
    height: 426px;
    position: absolute;
    left: 351px;
    top: 39px;
    z-index: 2;
  }
  
  .user-profile-ellipse-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    right: 316px;
    bottom: 314.86px;
    z-index: 2;
    gap: 0;
  }
  
  .user-profile-ellipse {
    flex-grow: 0;
    flex-shrink: 0;
  }
  
  /* User Profile Card Badges */
  .user-profile-card-badges {
    width: 448.16px;
    height: 251.36px;
    position: relative;
  }
  
  .user-profile-badge {
    position: absolute;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0px 18px 24px 0 rgba(118,118,118,0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7.5px;
  }
  
  .user-profile-badge-likes {
    width: 106.96px;
    height: 51.34px;
    left: 12.84px;
    top: 205.36px;
  }
  
  .user-profile-badge-followers {
    width: 134.77px;
    height: 51.34px;
    left: 326.23px;
    top: 113.38px;
  }
  
  .user-profile-badge-views {
    width: 134.77px;
    height: 51.34px;
    left: 119.8px;
    top: 5.35px;
  }
  
  .user-profile-badge-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .user-profile-badge-number {
    font-size: 16px;
    font-weight: 700;
    color: #1a2128;
    margin: 0;
    line-height: 1;
  }
  
  .user-profile-badge-label {
    font-size: 12px;
    color: #434d56;
    margin: 0;
    line-height: 1;
  }
  
  .user-profile-badge-icon-wrapper {
    width: 32px;
    height: 32px;
    position: relative;
    flex-shrink: 0;
  }
  
  .user-profile-badge-icon-bg {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100px;
  }
  
  .user-profile-badge-icon-likes .user-profile-badge-icon-bg {
    background: rgba(255,91,91,0.08);
  }
  
  .user-profile-badge-icon-followers .user-profile-badge-icon-bg {
    background: rgba(184,185,253,0.19);
  }
  
  .user-profile-badge-icon-views .user-profile-badge-icon-bg {
    background: rgba(98,202,137,0.08);
  }
  
  .user-profile-badge-icon {
    font-size: 12px;
    text-align: center;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .user-profile-badge-icon-likes .user-profile-badge-icon {
    color: #ff5b5b;
  }
  
  .user-profile-badge-icon-followers .user-profile-badge-icon {
    color: #7274ff;
  }
  
  .user-profile-badge-icon-views .user-profile-badge-icon {
    color: #62ca89;
  }
  
  /* User Profile Left Images */
  .user-profile-left-main-image {
    width: 70%;
    height: auto;
    object-fit: cover;
  }
  
  .user-profile-left-svg-1 {
    width: 136.39px;
    height: 110.42px;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .user-profile-left-svg-2 {
    width: 107.6px;
    height: 90.58px;
    position: absolute;
    left: 405px;
    top: 62px;
  }
  
  /* User Profile Notification Cards */
  .user-profile-notification-card {
    width: 399px;
    height: 59px;
    position: relative;
  }
  
  .user-profile-notification-card-2 {
    width: 366px;
    height: 59px;
    margin-top: 73px;
  }
  
  .user-profile-notification-card-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 20px 0 rgba(166,166,166,0.2);
  }
  
  .user-profile-notification-text {
    position: absolute;
    left: 75px;
    top: 21px;
    font-size: 14px;
    text-align: left;
    color: #1a2128;
    margin: 0;
  }
  
  .user-profile-notification-time {
    position: absolute;
    right: 15px;
    top: 19px;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    color: #4a4b63;
    margin: 0;
  }
  
  .user-profile-notification-avatar-wrapper {
    width: 47px;
    height: 47px;
    position: absolute;
    left: 13.5px;
    top: 6px;
  }
  
  .user-profile-notification-avatar-circle {
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .user-profile-notification-avatar {
    width: 48.65px;
    height: 75.04px;
    position: absolute;
    left: 0.68px;
    top: -5.77px;
    object-fit: cover;
    z-index: 1;
  }
  
  .user-profile-notification-image {
    width: 84px;
    height: 60px;
    position: absolute;
    left: -0.5px;
    top: 0;
    z-index: 2;
  }
  
  .user-profile-notification-card-2 .user-profile-notification-avatar-wrapper {
    left: 14.5px;
    top: 6px;
  }
  
  .user-profile-notification-card-2 .user-profile-notification-text {
    left: 76px;
    top: 23px;
  }
  
  .user-profile-notification-card-2 .user-profile-notification-time {
    right: 15px;
    top: 21px;
  }
  
  /* ============================================ */
  /* MÜŞTERİ YORUMLARI BÖLÜMÜ */
  /* ============================================ */
  .testimonials-section-wrapper {
    margin-top: 80px;
    margin-bottom: 20px;
  }
  
  .testimonials-header {
    margin-bottom: 40px;
    align-items: center;
  }
  
  .testimonials-title {
    font-size: 28px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 8px;
  }
  
  .testimonials-description {
    font-size: 14px;
    font-weight: 500;
    color: #718096;
    margin: 0;
  }
  
  .testimonials-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 24px;
    border-radius: 45px;
    background: #0866ff;
    box-shadow: 0px 21px 27px -10px rgba(8,102,255,0.47);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .testimonials-cta-button:hover {
    background: #0654cc;
    transform: translateY(-2px);
    box-shadow: 0px 25px 35px -10px rgba(8,102,255,0.55);
    color: #fff;
  }
  
  .testimonials-cta-icon {
    font-size: 18px;
    flex-shrink: 0;
  }
  
  .testimonials-cta-text {
    flex-shrink: 0;
  }
  
  .testimonials-swiper-wrapper {
    margin-top: 40px;
    overflow: hidden;
    margin-bottom: 40px;
  }
  
  .testimonials-swiper {
    overflow: hidden;
    padding: 0 15px;
  }
  
  .testimonials-swiper .swiper-wrapper {
    align-items: stretch;
  }
  
  .testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
  }
  
  .testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid #e2e7eb;
    height: 100%;
  }
  
  .testimonial-text {
    font-size: 18px;
    color: #171717;
    margin: 0;
    flex-grow: 1;
  }
  
  .testimonial-divider {
    width: 100%;
    opacity: 0.1;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .testimonial-avatar-wrapper {
    padding: 4px;
    border-radius: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(243,243,243,0.1) 100%);
    box-shadow: 0px 4px 8px 0 rgba(20,27,52,0.08);
    flex-shrink: 0;
  }
  
  .testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 100px;
    display: block;
  }
  
  .testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }
  
  .testimonial-author-name {
    font-size: 20px;
    font-weight: 700;
    color: #171717;
    margin: 0;
  }
  
  .testimonial-author-title {
    font-size: 16px;
    font-weight: 500;
    color: #171717;
    margin: 0;
  }
  
  .testimonial-stars {
    display: flex;
    gap: 8px;
  }
  
  .testimonial-star {
    color: #FFC400;
    font-size: 18px;
    flex-shrink: 0;
  }
  
  @media (max-width: 991.98px) {
    .testimonials-section-wrapper {
      margin-top: 60px;
      margin-bottom: 40px;
    }
    
    .testimonials-header {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .testimonials-cta-button {
      margin-top: 20px;
      width: 100%;
      max-width: 200px;
      height: 46px;
      padding: 12px 20px;
      font-size: 13px;
      gap: 4px;
    }
    
    .testimonials-cta-icon {
      font-size: 19px;
      width: 19px;
      height: 19px;
    }
    
    .testimonials-cta-text {
      font-size: 13px;
    }
    
    .testimonials-title {
      font-size: 24px;
    }
    
    .testimonials-description {
      font-size: 13px;
    }
    
    .testimonials-swiper-wrapper {
      margin-top: 30px;
    }
  }
  
  @media (max-width: 767.98px) {
    .testimonials-section-wrapper {
      margin-top: 40px;
      margin-bottom: 30px;
    }
    
    .testimonials-header {
      margin-bottom: 25px;
      text-align: center;
    }
    
    .testimonials-header .col-lg-4 {
      text-align: center !important;
    }
    
    .testimonials-title {
      font-size: 20px;
      margin-bottom: 6px;
    }
    
    .testimonials-description {
      font-size: 12px;
    }
    
    .testimonials-cta-button {
      width: auto;
      max-width: 280px;
      height: 44px;
      padding: 12px 20px;
      font-size: 13px;
      font-weight: 600;
      gap: 4px;
      margin: 20px auto 0;
      display: inline-flex;
    }
    
    .testimonials-cta-icon {
      font-size: 18px;
      width: 18px;
      height: 18px;
    }
    
    .testimonials-cta-text {
      font-size: 13px;
      font-weight: 600;
    }
    
    .testimonials-swiper-wrapper {
      margin-top: 25px;
      padding: 0 10px;
    }
    
    .testimonial-card {
      padding: 20px;
      border-radius: 24px;
    }
    
    .testimonial-text {
      font-size: 15px;
      margin-bottom: 15px;
    }
    
    .testimonial-author {
      gap: 12px;
    }
    
    .testimonial-avatar {
      width: 60px;
      height: 60px;
    }
    
    .testimonial-author-name {
      font-size: 16px;
    }
    
    .testimonial-author-title {
      font-size: 14px;
    }
    
    .testimonial-star {
      font-size: 16px;
    }
  }
  
  /* ============================================ */
  /* ÖZELLİKLER BÖLÜMÜ - Garantiler */
  /* ============================================ */
  .features-wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  
  .features-container {
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 17px 33px -2px rgba(28, 39, 49, 0.05);
  }
  
  .feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
  }
  
  .feature-icon-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .feature-icon-bg {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .feature-icon-orange .feature-icon-bg {
    background: #fdf6f3;
  }
  
  .feature-icon-purple .feature-icon-bg {
    background: #f2f3fe;
  }
  
  .feature-icon-red .feature-icon-bg {
    background: #feecef;
  }
  
  .feature-icon-blue .feature-icon-bg {
    background: #f2fbfe;
  }
  
  .feature-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    color: currentColor;
  }
  
  .feature-icon-orange .feature-icon {
    color: #ff986b;
  }
  
  .feature-icon-purple .feature-icon {
    color: #787aff;
  }
  
  .feature-icon-red .feature-icon {
    color: #ff645b;
  }
  
  .feature-icon-blue .feature-icon {
    color: #6ddbff;
  }
  
  .feature-text {
    font-size: 14px;
    color: #434d56;
    margin: 0;
    line-height: 1.4;
  }
  
  /* Responsive Styles */
  @media (max-width: 991.98px) {
    .features-wrapper {
      margin-top: 50px;
      margin-bottom: 50px;
    }
    
    .features-container {
      padding: 20px;
    }
    
    .feature-card {
      padding: 10px 0;
      gap: 10px;
    }
    
    .feature-icon-wrapper {
      width: 36px;
      height: 36px;
      min-width: 36px;
    }
    
    .feature-icon-bg {
      width: 36px;
      height: 36px;
    }
    
    .feature-icon {
      font-size: 16px;
    }
    
    .feature-text {
      font-size: 13px;
    }
  }
  
  @media (max-width: 767.98px) {
    .features-wrapper {
      margin-top: 40px;
      margin-bottom: 40px;
    }
    
    .features-container {
      padding: 16px;
      border-radius: 12px;
    }
    
    .features-container .row {
      margin-left: 0;
      margin-right: 0;
    }
    
    .features-container .row > [class*="col-"] {
      padding-left: 8px;
      padding-right: 8px;
    }
    
    .feature-card {
      padding: 8px 0;
      gap: 10px;
      align-items: center;
      flex-direction: row;
    }
    
    .feature-icon-wrapper {
      width: 32px;
      height: 32px;
      min-width: 32px;
    }
    
    .feature-icon-bg {
      width: 32px;
      height: 32px;
    }
    
    .feature-icon {
      font-size: 14px;
    }
    
    .feature-text {
      font-size: 12px;
      line-height: 1.3;
    }
  }
  
  /* ============================================ */
  /* DESTEK BÖLÜMÜ */
  /* ============================================ */
  
  .support-section-bg {
    min-height: 148px;
    border-radius: 16px;
    background: #00318f;
    padding: 10px 40px;
  }
  
  .support-text-content {
    color: #fff;
  }
  
  .support-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
  }
  
  .support-description {
    font-size: 18px;
    color: #f8fafc;
    margin: 0;
  }
  
  .support-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 24px;
    border-radius: 45px;
    background: #0866ff;
    box-shadow: 0px 21px 27px -10px rgba(8,102,255,0.47);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .support-cta-button:hover {
    background: #0754d4;
    transform: translateY(-2px);
    box-shadow: 0px 23px 30px -10px rgba(8,102,255,0.6);
    color: #fff;
  }
  
  .support-cta-text {
    flex-shrink: 0;
  }
  
  .support-cta-icon {
    font-size: 18px;
    flex-shrink: 0;
    color: #fff;
  }
  
  /* Responsive adjustments */
  @media (max-width: 991.98px) {
    .support-section-bg {
      padding: 30px 20px;
    }
    
    .support-title {
      font-size: 20px;
    }
    
    .support-description {
      font-size: 16px;
    }
    
    .support-cta-button {
      margin-top: 20px;
      width: 100%;
      max-width: 181px;
      height: 46px;
      padding: 12px 20px;
      font-size: 13px;
      gap: 4px;
    }
    
    .support-cta-icon {
      font-size: 19px;
      width: 19px;
      height: 19px;
    }
    
    .support-cta-text {
      font-size: 13px;
    }
  }
  
  @media (max-width: 767.98px) {
    .support-section-wrapper {
      margin-top: 40px;
      margin-bottom: 40px;
    }
    
    .support-section-bg {
      padding: 25px 20px;
      min-height: auto;
      border-radius: 12px;
    }
    
    .support-text-content {
      text-align: center;
      margin-bottom: 20px;
    }
    
    .support-title {
      font-size: 18px;
      margin-bottom: 6px;
    }
    
    .support-description {
      font-size: 14px;
    }
    
    .takipci-al-image {
      max-width: 120px;
      margin: 15px auto;
    }
    
    .support-cta-button {
      width: 100%;
      max-width: 100%;
      height: 44px;
      margin: 15px auto 0;
      padding: 12px 20px;
      font-size: 13px;
      font-weight: 600;
      gap: 4px;
    }
    
    .support-cta-icon {
      font-size: 18px;
      width: 18px;
      height: 18px;
    }
    
    .support-cta-text {
      font-size: 13px;
      font-weight: 600;
    }
  }
  
  /* ============================================ */
  /* TAKİPÇİ AL GÖRSELİ */
  /* ============================================ */
  .takipci-al-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
  
  /* ============================================ */
  /* İÇERİK BÖLÜMÜ - Instagram Takipçi Satın Almanın Faydaları */
  /* ============================================ */
  .content-section-wrapper {
    background: #f8f8f8;
    padding: 71px 0;
    margin-top: 40px;
  }
  
  .content-section-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .content-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0;
  }
  
  .content-section-text {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    max-height: 333px;
    overflow-y: auto;
    padding-right: 10px;
  }
  
  .content-section-text::-webkit-scrollbar {
    width: 4px;
  }
  
  .content-section-text::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .content-section-text::-webkit-scrollbar-thumb {
    background: #003595;
    border-radius: 10px;
  }
  
  .content-section-text::-webkit-scrollbar-thumb:hover {
    background: #003595;
  }
  
  .content-section-text p {
    margin-bottom: 16px;
  }
  
  .content-section-text p:last-child {
    margin-bottom: 0;
  }
  
  .content-section-divider {
    width: 4px;
    height: 71px;
    border-radius: 10px;
    background: #003595;
    margin: 0 auto;
  }
  
  /* Responsive adjustments */
  @media (max-width: 991.98px) {
    .content-section-wrapper {
      padding: 50px 0;
      margin-top: 50px;
      margin-bottom: 50px;
    }
    
    .content-section-title {
      font-size: 20px;
      margin-bottom: 15px;
    }
    
    .content-section-text {
      font-size: 13px;
      max-height: 300px;
    }
    
    .content-section-divider {
      display: none;
    }
  }
  
  @media (max-width: 767.98px) {
    .content-section-wrapper {
      padding: 30px 0;
      margin-top: 30px;
      margin-bottom: 30px;
    }
    
    .content-section-inner {
      gap: 10px;
    }
    
    .content-section-title {
      font-size: 18px;
      margin-bottom: 12px;
    }
    
    .content-section-text {
      font-size: 12px;
      max-height: 250px;
      padding-right: 8px;
    }
    
    .content-section-text p {
      margin-bottom: 12px;
    }
    
    .content-section-text::-webkit-scrollbar {
      width: 3px;
    }
  }
  
  /* ============================================ */
  /* FOOTER BÖLÜMÜ */
  /* ============================================ */
  .footer-wrapper {
    background: #00318f;
    padding: 50px 0 40px;
    overflow: hidden;
  }
  
  .footer-top-row {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(184, 223, 255, 0.3);
  }
  
  .footer-bottom-row {
    padding-top: 20px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
  }
  
  .footer-logo-image {
    width: 200px;
    height: 70px;
  }
  
  .footer-copyright {
    font-size: 12px;
    color: #f2f6f9;
    margin: 0;
  }
  
  .footer-payment-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .footer-payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    color: #f2f6f9;
  }
  
  .footer-payment-image {
    display: block;
    height: 32px;
    width: auto;
  }
  
  .footer-social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
  }
  
  .footer-social-icon i {
    font-size: 20px;
  }
  
  /* Instagram brand color */
  .footer-social-icon:first-child:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }
  
  /* TikTok brand color */
  .footer-social-icon:nth-child(2):hover {
    background: #000000;
  }
  
  /* YouTube brand color */
  .footer-social-icon:nth-child(3):hover {
    background: #FF0000;
  }
  
  /* X/Twitter brand color */
  .footer-social-icon:nth-child(4):hover {
    background: #000000;
  }
  
  /* Facebook brand color */
  .footer-social-icon:nth-child(5):hover {
    background: #1877F2;
  }
  
  /* Responsive adjustments */
  @media (max-width: 991.98px) {
    .footer-wrapper {
      padding: 40px 0 30px;
      margin-top: 60px;
    }
    
    .footer-top-row {
      padding-bottom: 25px;
      margin-bottom: 25px;
    }
    
    .footer-payment-icons {
      justify-content: center;
      margin-top: 20px;
    }
    
    .footer-social-icons {
      justify-content: center;
      margin-top: 20px;
    }
    
    .footer-logo {
      justify-content: center;
      margin-bottom: 20px;
    }
    
    .footer-copyright {
      text-align: center;
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 767.98px) {
    .footer-wrapper {
      padding: 30px 0 25px;
      margin-top: 40px;
    }
    
    .footer-top-row {
      padding-bottom: 20px;
      margin-bottom: 20px;
    }
    
    .footer-logo-image {
      width: 150px;
      height: auto;
    }
    
    .footer-payment-icons {
      gap: 8px;
      justify-content: center;
    }
    
    .footer-payment-icon {
      padding: 0;
      height: auto;
    }
    
    .footer-payment-image {
      height: 26px;
    }
    
    .footer-social-icons {
      gap: 8px;
      justify-content: center;
    }
    
    .footer-social-icon {
      width: 45px;
      height: 45px;
    }
    
    .footer-social-icon i {
      font-size: 18px;
    }
  }
  