/* ========== COOKIES SIDE PANEL ========== */
.cookies-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookies-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cookies-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 900px;
    max-width: 100vw;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

.cookies-panel.active {
    transform: translateX(0);
}

/* Header */
.cookies-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
   padding: 15px 24px 8px;
    flex-shrink: 0;
}

.cookies-panel-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.cookies-panel-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.cookies-panel-close:hover {
    background: #f5f5f5;
    color: #1a1a1a;
}

.cookies-panel-close svg {
    width: 20px;
    height: 20px;
}

/* Tabs */
.cookies-panel-tabs {
    display: flex;
    gap: 0;
       padding: 0px 24px 0;
    flex-shrink: 0;
    border-bottom: 2px solid #f0f0f0;
    background: #f0f0f0;
}

.cookies-panel-tab {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 18px;
    font-size:15px;
    font-weight: 600;
    color: #888;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
    font-family: inherit;
}

.cookies-panel-tab:hover {
    color: #FE7E23;
}

.cookies-panel-tab.active {
    color: #FE7E23;
    border-bottom-color: #FE7E23;
}

/* Tab content */
.cookies-panel-body {
    flex: 1;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.cookies-tab-pane {
    display: none;
    padding: 24px 24px 32px;
}

.cookies-tab-pane.active {
    display: block;
}

.cookies-tab-pane p,
.cookies-tab-pane li {
    font-size: 0.93rem;
    line-height: 1.8;
    color: #555;
}

.cookies-tab-pane h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0 0.4rem;
}

.cookies-tab-pane h3:first-of-type {
    margin-top: 0;
}

.cookies-tab-pane ul {
    padding-left: 1.2rem;
    margin: 0.3rem 0 0.8rem;
}

.cookies-tab-pane ul li {
    margin-bottom: 0.3rem;
}

.cookies-tab-pane a {
    color: #FE7E23;
    text-decoration: none;
}

.cookies-tab-pane a:hover {
    text-decoration: underline;
}

.cookies-panel-last-updated {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 1.2rem;
}

@media (max-width: 540px) {
    .cookies-panel {
        width: 100vw;
    }
}
.box {
	 margin-bottom: 15px;
	 display: flex;
	 flex-direction: column;
	 gap: 7px;
}
 .box:first-child h2, .box:first-child p {
	 color: black !important;
	 
}
 .box:last-child{
    margin-bottom: 0;
 }
 .box h2 {
	 font-size: 16px;
	 font-weight: 700;
	 color: #18181b;
}
 .box p {
	    font-size: 13px;
    line-height: 21px;
	 color: #666666;
}
 .box a {
	 color: #ff6b35;
}
 .box ul {
	 padding-left: 15px;
	 display: flex;
	 flex-direction: column;
     margin-bottom: 0;
}
 .box ul li {
	 list-style: disc;
      font-size: 13px;
      line-height: 21px;
}
 .box h4 span {
	 font-weight: 400;
}
 .box h5 {
	 font-size: 13px;
}
 .box .policy-last-updated {
	 font-weight: 700;
}
.box h4{
    font-size: 13px;
}