/* ===================================================== */
/* GENEL */
/* ===================================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: "Segoe UI", Arial, Helvetica, sans-serif;
background:#f6f8fb;
color:#222;
line-height:1.7;
}

/* ===================================================== */
/* HERO */
/* ===================================================== */

.sgk-hero{
background:linear-gradient(135deg,#0b2a4a,#003f8c);
color:#fff;
padding:90px 20px;
text-align:center;
}

.sgk-hero h1{
font-size:38px;
margin-bottom:10px;
font-weight:800;
}

.sgk-hero p{
font-size:18px;
opacity:.95;
}

/* ===================================================== */
/* CONTENT */
/* ===================================================== */

.sgk-content{
background:#fff;
margin-top:-40px;
padding:50px 35px;
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.sgk-content h2{
font-size:26px;
margin:35px 0 15px;
color:#0b2a4a;
font-weight:800;
}

.sgk-content p{
font-size:16px;
margin-bottom:15px;
color:#374151;
}

/* ===================================================== */
/* TABLE */
/* ===================================================== */

.sgk-table{
width:100%;
border-collapse:collapse;
margin:20px 0 30px;
}

.sgk-table th{
background:#0b2a4a;
color:#fff;
padding:14px;
font-size:15px;
text-align:left;
}

.sgk-table td{
padding:14px;
border-bottom:1px solid #e5e7eb;
font-size:15px;
}

.sgk-table tr:hover{
background:#f9fafb;
}

.sgk-table .total{
font-weight:800;
background:#fff7ed;
}

/* ===================================================== */
/* HIGHLIGHT BOX */
/* ===================================================== */

.highlight-box{
background:#fff7ed;
border-left:6px solid #ff7a00;
padding:20px;
margin:20px 0;
font-size:18px;
font-weight:700;
border-radius:10px;
}

/* ===================================================== */
/* CTA */
/* ===================================================== */

.cta-box{
background:linear-gradient(135deg,#ff7a00,#ff9c2b);
color:#fff;
padding:35px;
border-radius:16px;
text-align:center;
margin:40px 0;
}

.cta-box h3{
font-size:26px;
margin-bottom:10px;
}

.cta-btn{
display:inline-block;
background:#fff;
color:#ff7a00;
padding:14px 26px;
border-radius:8px;
text-decoration:none;
font-weight:800;
margin-top:15px;
transition:.3s;
}

.cta-btn:hover{
background:#0b2a4a;
color:#fff;
}

/* ===================================================== */
/* FAQ */
/* ===================================================== */

.faq{
margin-top:30px;
}

.faq h4{
margin-top:20px;
color:#0b2a4a;
font-size:18px;
}

.faq p{
font-size:15px;
margin-top:5px;
color:#4b5563;
}

/* ===================================================== */
/* MOBILE */
/* ===================================================== */

@media(max-width:768px){

.sgk-hero{
padding:60px 15px;
}

.sgk-hero h1{
font-size:26px;
}

.sgk-content{
padding:25px 18px;
margin-top:-30px;
}

.sgk-content h2{
font-size:22px;
}

.sgk-table th,
.sgk-table td{
font-size:14px;
padding:10px;
}

.cta-box h3{
font-size:20px;
}

}



/* ===================================================== */
/* FAQ ACCORDION */
/* ===================================================== */

.faq-title{
margin-top:60px;
margin-bottom:20px;
font-size:26px;
color:#0b2a4a;
font-weight:800;
}

.faq{
margin-bottom:50px;
}

.faq-item{
background:#fff;
border-radius:12px;
margin-bottom:12px;
box-shadow:0 5px 18px rgba(0,0,0,0.06);
overflow:hidden;
border:1px solid #eee;
}

.faq-question{
width:100%;
background:#fff;
border:none;
padding:18px 20px;
text-align:left;
font-size:16px;
font-weight:700;
cursor:pointer;
color:#0b2a4a;
position:relative;
transition:.3s;
}

.faq-question:hover{
background:#f9fafb;
}

.faq-question::after{
content:"+";
position:absolute;
right:20px;
font-size:22px;
color:#ff7a00;
transition:.3s;
}

.faq-item.active .faq-question::after{
content:"–";
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .4s ease;
background:#f9fafb;
}

.faq-answer p{
padding:18px 20px;
font-size:15px;
color:#374151;
}





.faq-ul{
padding-left:20px;
margin:12px 0;
}

.faq-ul li{
margin-bottom:6px;
color:#0b2a4a;
font-weight:600;
font-size:14px;
}

.faq-note{
margin-top:12px;
font-size:14px;
color:#374151;
background:#fff7ed;
border-left:5px solid #ff7a00;
padding:12px 14px;
border-radius:10px;
}

