/* =========================
   Theme & Base
========================= */
:root{
  --primary:#621EEE;
  --primary-600:#5a19e0;
  --primary-700:#4c16bf;
  --bg:#fafafe;
  --card:#fff;
  --text:#0f172a;
  --brand:#621EEE;
  --muted:#475569;
  --border:#e5e7eb;
}

*{box-sizing:border-box}
html,body{ height:100% }
body{
  margin:0;
  
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
}

/* Container & Layout */
.layout{display:grid; gap:18px; margin-top:64px}
@media (min-width:1024px){ .layout{grid-template-columns:4fr 2fr} }
.layout > .left{order:1}
.layout > .right{order:2}

/* Card (tek ortak stil) */
.card,.promo-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
  box-shadow:0 10px 24px rgba(2,6,23,.06);
}
.card h2{margin:0 0 10px; font-size:1.05rem}

/* Stack & Form */
.stack{display:grid; gap:16px}
.row{display:grid; gap:10px; grid-template-columns:1fr}
@media (min-width:640px){ .row.three{grid-template-columns:1fr 1fr 1fr} }

label{font-size:.88rem; color:var(--muted)}
input[type="number"],input[type="text"],select{
  width:100%; background:#fff; color:var(--text);
  border:1px solid var(--border); border-radius:10px; height:44px;
  padding:10px 12px; font-size:1rem; outline:none;
  box-shadow:0 2px 0 rgba(2,6,23,.02) inset;
}
input:focus,select:focus{border-color:var(--primary); box-shadow:0 0 0 3px rgba(98,30,238,.18)}
input::placeholder{color:#9aa3b2}

.btn{
  border:1px solid var(--border);
  background:linear-gradient(90deg,var(--primary),var(--primary-600));
  color:#fff; padding:10px 16px; border-radius:12px; cursor:pointer; font-weight:700
}
.btn:hover{filter:brightness(1.05)}

/* Stats */
.stat{display:flex; align-items:baseline; justify-content:space-between; padding:8px 0; border-bottom:1px dashed var(--border)}
.stat:last-child{border-bottom:none}
.stat .value{font-weight:700; color:#0f172a}
.bignumber{font-size:clamp(1.2rem,1rem + 1.6vw,2rem); font-weight:800; letter-spacing:.2px}
.footer{margin-top:10px; font-size:.86rem; color:var(--muted)}
.ok{color:#16a34a}

/* Tax chips */
.tax-chips{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px}
@media (max-width:900px){ .tax-chips{grid-template-columns:1fr 1fr} }
@media (max-width:600px){ .tax-chips{grid-template-columns:1fr} }
.tax-chip{
  background:#f7f8ff; border:1px solid var(--border); border-radius:12px;
  padding:10px 12px; display:flex; align-items:center; justify-content:space-between;
}
.tax-chip span{color:#334155}
.tax-chip b{font-variant-numeric:tabular-nums; color:#0f172a; font-weight:800}

/* Promo side */
.promo-title{
  text-align:center; margin:0 0 8px;
  font-size:clamp(1.2rem,.6rem + 1.4vw,1.6rem); font-weight:900; color:#1f2937;
}
.promo-sub{margin:0; color:#334155}
.promo-body{display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:16px}
@media (max-width:900px){ .promo-body{grid-template-columns:1fr} }
.promo-shot{display:flex; align-items:center; justify-content:center}
.promo-shot img{width:100%; max-height:420px; height:auto; object-fit:contain; display:block; border-radius:12px}
@media (max-width:900px){ .promo-shot img{max-height:320px} }

.shot-wrap{
  margin-top:6px; background:#fff; border:1px solid var(--border);
  border-radius:14px; padding:10px; display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 18px rgba(2,6,23,.05);
}
.shot-wrap img{display:block; width:100%; max-width:420px; height:auto; border-radius:12px; object-fit:contain}

/* Store badges (tek tanım) */
.store-row{display:flex; gap:12px; flex-wrap:wrap; justify-content:center; align-items:center}
.store-row img{height:44px; width:auto; display:block}
@media (min-width:901px){ .store-row img{height:48px} }

/* Policy links */
.policy-links{
  text-align:center; padding:8px; border-top:1px solid #ddd; font-size:9px; color:#777;
  display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin:0;
}
.policy-links a{flex:1 0 calc(33% - 25px); text-align:center; color:#777; text-decoration:none}
.policy-links a:hover{text-decoration:underline}

/* =========================
   Cookie Banner & Panel
========================= */



#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #6200EE;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    display: none;
    flex-direction: column;
}

#cookie-banner p{
    color: #fff;
    text-align: left;

}

#cookie-banner .div-button{
    display: flex;
    flex-direction: column;

}
#cookie-banner .cookieButton{
    background: #FFFFFF;
    border: none;
    color: #000;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}
#cookie-banner .cookieButton2{
    background: #e8e8e8;
    border: none;
    color: #000;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}

#cookie-settings-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 10px 15px; /* Yan ve üst boşluklar optimize edildi */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 95%; /* Mobil görünümde daha fazla genişlik */
    max-width: 600px; /* Genişlik artırıldı */
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    font-family: 'Poppins', sans-serif;
}

#cookie-settings-panel h2 {
    font-size: 18px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

#cookie-settings-panel p {
    font-size: 13px; /* Daha kompakt bir metin görünümü */
    color: #555;
    line-height: 1.6;
    margin: 5px 0; /* Daha dar boşluklar */
    padding: 0;
}

#cookie-settings-panel label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

#cookie-settings-panel input[type="checkbox"] {
    margin-right: 10px;
}

#cookie-settings-panel a {
    color: #6200EE;
    text-decoration: underline;
}

#cookie-settings-panel button {
    background: #6200EE;
    border: none;
    color: #fff;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}

#cookie-settings-panel button:hover {
    background: #5e00e0;
}

#cookie-settings-panel button:nth-child(2) {
    background: #ccc;
    color: #333;
}

#cookie-settings-panel button:nth-child(2):hover {
    background: #bbb;
}

/* Switch Tasarımı */
.switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #6200EE; /* Ana renginiz */
}

input:focus + .slider {
    box-shadow: 0 0 1px #6200EE;
}

input:checked + .slider:before {
    transform: translateX(18px);
}

.switch-label {
    font-size: 14px;
    color: #333;
    margin-left: 10px;
    vertical-align: middle;
}


/* Masaüstü görünüm */
@media screen and (min-width: 1024px) {
    #cookie-settings-panel {
        max-height: 80vh; /* Panelin maksimum yüksekliği ekranın %80’i kadar */
        overflow-y: auto; /* Dikey kaydırma ekleyin */
        width: 60%;

    }


    #cookie-banner {
        display: none;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #6200EE;
        color: #fff;
        padding: 20px;
        text-align: center;
        z-index: 1000;
    }
    #cookie-banner p{
        width: 100%;
        color: #fff;
        left: 24px;
        text-align: left;

    }

    #cookie-banner .div-button{
        width: 520px;
        right: 24px;
        display: flex;
        flex-direction: row;

    }
    #cookie-banner .cookieButton{
        background: #FFFFFF;
        border: none;
        color: #000;
        padding: 10px 20px;
        margin-top: 20px;
        margin-right: 20px;
        font-size: 16px;
        margin-left: auto;
        cursor: pointer;
        border-radius: 5px;
        width: 240px;
        text-align: center;
    }
    #cookie-banner .cookieButton2{
        background: #e8e8e8;
        border: none;
        color: #000;
        padding: 10px 20px;
        margin-top: 20px;
        margin-right: 20px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 5px;
        width: 240px;
        text-align: center;
    }

}





.switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%
}

input:checked+.slider {
    background-color: #6200EE
}

input:focus+.slider {
    box-shadow: 0 0 1px #6200EE
}

input:checked+.slider:before {
    transform: translateX(18px)
}

.switch-label {
    font-size: 14px;
    color: #333;
    margin-left: 10px;
    vertical-align: middle
}

@media screen and (min-width:1024px) {
    #cookie-settings-panel {
        max-height: 80vh;
        overflow-y: auto;
        width: 60%
    }

    #cookie-banner {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #6200EE;
        color: #fff;
        padding: 20px;
        text-align: center;
        z-index: 1000;
        display: none
    }

    #cookie-banner p {
        width: 100%;
        color: #fff;
        left: 24px;
        text-align: left
    }

    #cookie-banner .div-button {
        width: 520px;
        right: 24px;
        display: flex;
        flex-direction: row
    }

    #cookie-banner .cookieButton {
        background: #FFFFFF;
        border: none;
        color: #000;
        padding: 10px 20px;
        margin-top: 20px;
        margin-right: 20px;
        font-size: 16px;
        margin-left: auto;
        cursor: pointer;
        border-radius: 5px;
        width: 240px;
        text-align: center
    }

    #cookie-banner .cookieButton2 {
        background: #e8e8e8;
        border: none;
        color: #000;
        padding: 10px 20px;
        margin-top: 20px;
        margin-right: 20px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 5px;
        width: 240px;
        text-align: center
    }
}




#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    display: none
}

#cookieConsent a {
    color: #f4a460;
    text-decoration: underline
}

#cookieConsent button {
    background: #6200EE;
    border: none;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    font-size: 16px
}

#cookie-settings-panel label{
  display:flex;               /* ÖNEMLİ: yan yana */
  align-items:center;
  gap:10px;                   /* switch ile metin arası */
  margin-top:10px;
  font-size:14px;
  color:#333;
}

/* Switch sabit genişlikte kalsın */
#cookie-settings-panel .switch{
  flex:0 0 auto;              /* sabit */
}

/* Metin esneyebilsin ve çok satır olsun */
#cookie-settings-panel .switch-label{
  flex:1 1 auto;              /* ÖNEMLİ: yer kaplasın */
  line-height:1.5;
  color:#333;                 /* kalınlaştırma */
  word-break:break-word;      /* çok uzun kelimeler için */
  white-space:normal;         /* minify'dan gelen nowrap vs. kırar */
}




details > summary{ list-style:none;
margin-top:10px }
details > summary::-webkit-details-marker{ display:none; }

.exp-sum{
  display:flex; align-items:center; gap:8px;
  padding:10px 12px;               /* daha geniş tıklama alanı */
  border:1px solid var(--border);
  border-radius:10px;
  background:#fff;
  cursor:pointer;
  transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

/* ok simgesi */
.exp-sum::before{
  content:"▸";
  display:inline-block;
  width:1em; text-align:center;
  transform: translateY(-1px);
  transition: transform .15s ease;
  color: var(--primary);
  font-weight:700;
}

/* açıkken oku döndür */
details[open] .exp-sum::before{
  transform: rotate(90deg);
}

/* başlık metni */
.exp-title{
  font-weight:700; font-size:1.05rem; line-height:1.3;
  color:#111827;
}

/* hover/active durumları */
.exp-sum:hover{
  background:#f9fafb;
  border-color:#d1d5db;
}
.exp-sum:active{
  background:#f3f4f6;
}

/* klavye ile erişilebilirlik */
.exp-sum:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(98,30,238,.18);
  border-color: var(--primary);
}

/* özet içeriği (summary dışındaki kutu) üstten ayıralım */
details > div{ margin-top:10px; }

/* (opsiyonel) sol şerit: açıkken vurgu */
details[open] .exp-sum{
  border-color: var(--primary);
  box-shadow: inset 0px 0 0 0 var(--primary);
}

.exp-sum::before{ content:""; width:12px; height:12px;
  mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M7 5l6 5-6 5z"/></svg>') no-repeat center/contain;
  -webkit-mask: /* same as mask */;
  background: var(--primary);
  transition: transform .15s ease;
}


.blog-list,.blog-list-ul{ margin:0 }
.blog-list-li{ margin-bottom:20px }
.blog-list-li a{ color:#333; font-size:14px }
.blog-list-li a:hover{ color:#6200EE; text-decoration:underline }
.blog-list-h3{ font-size:18px; margin-bottom:30px; color:#6200EE }


/* Layout sağlamlaştırma */
.layout{
  display:grid;
  gap:18px;
  margin-top:64px;
}
.layout > *{ min-width:0; }              /* grid çocukları taşma yapmasın */

@media (min-width:1024px){
  .layout{
    grid-template-columns: minmax(0,4fr) minmax(0,2fr);
    align-items:start;                    /* sağ kart yukarı hizalansın */
  }
}

/* İsimler net olsun */
.layout > .left{ order:1; }
.layout > .right{ order:2; }

/* İstersen sağ kartı yapışkan yap (opsiyonel) */
.right{ position:sticky; top:80px; }
========================= */


*{ box-sizing:border-box }
html,
body{
  margin:0;
  
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
}

img{ max-width:100%; height:auto; display:block }

/* Fixed nav olduğundan içerik üstten boşluk alır */




.container{ max-width:1300px; margin-inline:auto; padding:16px}

    .page-intro h1{ font-size:clamp(20px,2.2vw,28px); line-height:1.25; margin:64px 0 8px; }
.muted{ color:var(--muted) }

/* =========================
   Layout
========================= */
.layout{
  display:grid; gap:16px; margin-top:18px;
  grid-template-columns:minmax(0,4fr) minmax(0,2fr); /* ≈ %66 / %34 */
}
@media (max-width:1024px){
  .layout{ grid-template-columns:1fr }
}

a{ color:var(--brand); text-decoration:none }











.navigation a.nav-buttons,
.navigation a.nav-buttons-home {
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
  /* mevcut .nav-buttons buton stillerini buraya taşıyabilirsin */
}
.navigation a[aria-current="page"] {
  background: rgba(255,255,255,0.15); /* yarı saydam beyaz arka plan */
  color: #fff;                    /* biraz kalın yazı */
  border-radius: 8px;
}

.navigation a[aria-current="page"] img.icon {
  filter: brightness(1.5); /* ikon biraz daha parlak */
}


.navigation{
  position:fixed; top:0; left:0; width:100%; height:56px;
  background:#6200EE; padding:10px 4px; display:flex; align-items:center;
  overflow:hidden; z-index:9998; gap:4px;
}
.navigation span{font-size:10px; color:#fff}
#page-logo{margin:0 8px; width:48px; height:48px; padding:10px;  cursor:pointer}
.nav-buttons,.nav-buttons-home{
  height:56px; min-width:100px;
  background:#6200EE; border:none; color:#fff; font-size:12px; cursor:pointer;
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
  transition:background-color .3s ease;
}
.nav-buttons:hover,.nav-buttons-home:hover{background:#eead0e}
.icon{width:20px; height:20px}
#page-header{color:#fff; margin-left:auto; margin-right:24px; font-size:28px}

#page-logo{
  margin:0 8px; width:48px; height:48px; padding:10px;  cursor:pointer;
}




@media (max-width:768px){
  .navigation{
    height:56px;
    padding:0 6px;
    gap:0;
    overflow-x:auto;               /* yatay kaydırma */
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x mandatory;  /* snap etkisi */
  }

  /* Linkler tek satırda, kaydırılabilir olsun */
  .navigation a.nav-buttons,
  .navigation a.nav-buttons-home{
    display:inline-flex;           /* <a> için doğru kullanım */
    align-items:center;
    justify-content:center;
    flex:0 0 auto;                 /* sıkışma yok, yan yana ak */
    min-width:auto;                /* min-width=100px sınırlamasını kaldır */
    padding:0 10px;
    height:56px;
    text-decoration:none;
    background:transparent;        /* arkaplan tek renk olsun */
    border-radius:8px;
    scroll-snap-align:center;
  }

  /* Metinleri gizle → sadece ikon (yer kazancı) */
  .navigation a.nav-buttons span,
  .navigation a.nav-buttons-home span{
    display:none;
  }

  /* İkonları bir tık büyüt */
  .navigation .icon{
    width:22px; height:22px;
  }

  /* Logo daha kompakt */
  #page-logo{
    height:32px; width:auto; padding:0; margin:0 6px 0 0; object-fit:contain;
  }

  /* Aktif sayfa vurgusu */
  .navigation a[aria-current="page"]{
    background:rgba(255,255,255,0.15);
  }

  /* iOS scroll bar gizle */
  .navigation::-webkit-scrollbar{ display:none; }
}







#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #6200EE;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    display: none;
    flex-direction: column;
}

#cookie-banner p{
    color: #fff;
    text-align: left;

}

#cookie-banner .div-button{
    display: flex;
    flex-direction: column;

}
#cookie-banner .cookieButton{
    background: #FFFFFF;
    border: none;
    color: #000;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}
#cookie-banner .cookieButton2{
    background: #e8e8e8;
    border: none;
    color: #000;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}

#cookie-settings-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 10px 15px; /* Yan ve üst boşluklar optimize edildi */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 95%; /* Mobil görünümde daha fazla genişlik */
    max-width: 600px; /* Genişlik artırıldı */
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    font-family: 'Poppins', sans-serif;
}

#cookie-settings-panel h2 {
    font-size: 18px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

#cookie-settings-panel p {
    font-size: 13px; /* Daha kompakt bir metin görünümü */
    color: #555;
    line-height: 1.6;
    margin: 5px 0; /* Daha dar boşluklar */
    padding: 0;
}

#cookie-settings-panel label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

#cookie-settings-panel input[type="checkbox"] {
    margin-right: 10px;
}

#cookie-settings-panel a {
    color: #6200EE;
    text-decoration: underline;
}

#cookie-settings-panel button {
    background: #6200EE;
    border: none;
    color: #fff;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}

#cookie-settings-panel button:hover {
    background: #5e00e0;
}

#cookie-settings-panel button:nth-child(2) {
    background: #ccc;
    color: #333;
}

#cookie-settings-panel button:nth-child(2):hover {
    background: #bbb;
}

/* Switch Tasarımı */
.switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #6200EE; /* Ana renginiz */
}

input:focus + .slider {
    box-shadow: 0 0 1px #6200EE;
}

input:checked + .slider:before {
    transform: translateX(18px);
}

.switch-label {
    font-size: 14px;
    color: #333;
    margin-left: 10px;
    vertical-align: middle;
}


/* Masaüstü görünüm */
@media screen and (min-width: 1024px) {
    #cookie-settings-panel {
        max-height: 80vh; /* Panelin maksimum yüksekliği ekranın %80’i kadar */
        overflow-y: auto; /* Dikey kaydırma ekleyin */
        width: 60%;

    }


    #cookie-banner {
        display: none;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #6200EE;
        color: #fff;
        padding: 20px;
        text-align: center;
        z-index: 1000;
    }
    #cookie-banner p{
        width: 100%;
        color: #fff;
        left: 24px;
        text-align: left;

    }

    #cookie-banner .div-button{
        width: 520px;
        right: 24px;
        display: flex;
        flex-direction: row;

    }
    #cookie-banner .cookieButton{
        background: #FFFFFF;
        border: none;
        color: #000;
        padding: 10px 20px;
        margin-top: 20px;
        margin-right: 20px;
        font-size: 16px;
        margin-left: auto;
        cursor: pointer;
        border-radius: 5px;
        width: 240px;
        text-align: center;
    }
    #cookie-banner .cookieButton2{
        background: #e8e8e8;
        border: none;
        color: #000;
        padding: 10px 20px;
        margin-top: 20px;
        margin-right: 20px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 5px;
        width: 240px;
        text-align: center;
    }

}

