* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0f3d75;
    --primary-soft: #174f96;
    --accent: #dbe8f8;
    --dark: #102033;
    --text: #334155;
    --light: #f8fbff;
    --white: #ffffff;
    --border: #d9e2ec;
    --shadow: 0 10px 30px rgba(15, 61, 117, 0.08);
}

body {
    font-family: Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    position: relative;
    background: #f8fbf8;
    overflow-x: hidden;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* HEADER */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--dark);
}

.brand-logo {
    width: 90px;
    height: 56px;
    border-radius: 10px;
    background: transparent; /
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text strong {
    display: block;
    font-size: 20px;
}

.brand-text small {
    color: #64748b;
    font-size: 13px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 10px;
    transition: 0.25s ease;
}

.main-nav a:hover {
    background: var(--accent);
    color: var(--primary);
}

/* SLIDER */
.main-slider-section {
    padding: 8px 0 18px;
}

.main-slider {
    position: relative;
    width: 96%;
    margin: 0 auto;
    height: 550px;
    border-radius: 26px;
    overflow: hidden;
    background: #0f3d75;
    box-shadow: 0 18px 40px rgba(15, 61, 117, 0.14);
}

.main-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
}

.main-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 24, 48, 0.80) 0%, rgba(8, 24, 48, 0.45) 45%, rgba(8, 24, 48, 0.12) 100%);
    display: flex;
    align-items: center;
    padding: 50px;
}

.main-slide-content {
    max-width: 620px;
    color: #fff;
}

.slide-badge {
    display: inline-flex;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 8px 8px;
    border-radius: 999px;
    margin-bottom: 18px;
    font-size: 13px;
}

.main-slide-content h2 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

.main-slide-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.92);
}

.slide-buttons {
    display: flex;
    gap: 14px;
    margin-top: 400px;
    flex-wrap: wrap;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.20);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: 0.25s ease;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.32);
}

.slider-arrow.prev {
    left: 18px;
}

.slider-arrow.next {
    right: 18px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
}

.slider-dots .dot.active {
    background: #fff;
}

/* HERO */
.hero {
    padding: 70px 0 50px;
}

.hero-box {
    background: linear-gradient(135deg, #0f3d75 0%, #1e5ca8 100%);
    border-radius: 28px;
    padding: 70px 50px;
    color: white;
    box-shadow: var(--shadow);
}

.hero-box h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero-box p {
    font-size: 18px;
    max-width: 700px;
    opacity: 0.95;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.22);
}

/* ORTAK SECTION */
.section {
    padding: 60px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 34px;
}

.section-head h2 {
    font-size: 34px;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-head p {
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* REFERANSLAR */
.references-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.reference-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.reference-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 14px;
}

.reference-card h3 {
    font-size: 18px;
    color: var(--dark);
}

/* MARKALARIMIZ */
.brands-section {
    padding: 40px 0 60px;
    background: #f8fafc;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.brand-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.brand-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* INFO BAND */
.info-band {
    padding: 30px 0 70px;
}

.info-band-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-item {
    text-align: center;
}

.info-item i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.info-item h4 {
    color: var(--dark);
    margin-bottom: 8px;
}

/* FOOTER */
.site-footer {
    background: var(--dark);
    color: white;
    margin-top: 60px;
    padding: 50px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 14px;
}

.site-footer a {
    display: block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    margin-bottom: 8px;
}

.site-footer a:hover {
    color: white;
}

/* HAKKIMIZDA */
.page-hero.about-page-hero {
    padding: 56px 0 38px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5fc 100%);
    border-bottom: 1px solid #e5edf6;
}

.page-hero-content {
    max-width: 760px;
}

.page-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: #eaf2fb;
    color: #0f3d75;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.page-hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    margin: 0 0 14px;
    color: #102033;
}

.page-hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin: 0;
    color: #4b5f75;
}

.about-section {
    padding: 42px 0 30px;
    background: #f5f7fb;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-card-full {
    grid-column: span 2;
}

.about-card {
    min-height: auto;
}

.about-card {
    background: #ffffff;
    border: 1px solid #dfe8f2;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 28px rgba(15, 61, 117, 0.08);
    transition: all 0.3s ease;
    min-height: 100%;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15, 61, 117, 0.12);
}

.about-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf2fb;
    color: #0f3d75;
    font-size: 22px;
    margin-bottom: 18px;
    margin: 0 auto 18px;
}

.about-card h2 {
    text-align: center;
    font-size: 25px;
    margin: 0 0 14px;
    color: #102033;
}

.about-card p {
    margin: 0;
    color: #526377;
    line-height: 1.85;
    font-size: 15px;
}

.team-section {
    padding: 56px 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 30px;
}

.team-card {
    background: #ffffff;
    border: 1px solid #e3ebf4;
    border-radius: 24px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(15, 61, 117, 0.06);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(15, 61, 117, 0.10);
}

.team-image-frame {
    width: 130px;
    height: 130px;
    margin: 0 auto 18px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg, #eaf2fb 0%, #d9e7f7 100%);
    box-shadow: 0 10px 24px rgba(15, 61, 117, 0.08);
}

.team-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #dfe7f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image-circle {
    border-radius: 50%;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-content h3 {
    margin: 0 0 8px;
    font-size: 21px;
    color: #102033;
}

.team-content p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.certificates-section {
    padding: 30px 0 70px;
    background: #f5f7fb;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.certificate-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2eaf3;
    box-shadow: 0 10px 24px rgba(15, 61, 117, 0.06);
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(15, 61, 117, 0.10);
}

.certificate-image {
    width: 100%;
    height: 240px;
    background: #e2e8f0;
    overflow: hidden;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.certificate-content {
    padding: 22px;
    text-align: left;
}

.certificate-content h3 {
    margin: 0 0 10px;
    font-size: 19px;
    color: #102033;
}

.certificate-content p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.75;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid,
    .team-grid,
    .certificates-grid,
    .references-grid,
    .info-band-box,
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero-content {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .page-badge {
        display: inline-block;
        margin: 0 auto 14px;
    }

    .hero-box h1 {
        font-size: 34px;
    }

    .main-slider {
        height: 400px;
    }

    .main-slide-content h2 {
        font-size: 30px;
    }

    .main-slide-content p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .about-grid,
    .team-grid,
    .certificates-grid,
    .references-grid,
    .info-band-box,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .page-hero.about-page-hero {
        padding: 44px 0 28px;
    }

    .page-hero-content h1 {
        font-size: 32px;
    }

    .page-hero-content p {
        font-size: 16px;
    }

    .team-image-frame {
        width: 150px;
        height: 150px;
    }

    .header-inner {
        flex-direction: column;
        padding: 16px 0;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-box {
        padding: 40px 24px;
    }

    .hero-box h1 {
        font-size: 28px;
    }

    .main-slider {
        height: 320px;
        border-radius: 18px;
        width: 100%;
    }

    .main-slide-overlay {
        padding: 24px;
    }

    .main-slide-content h2 {
        font-size: 24px;
    }

    .main-slide-content p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slide-badge {
        font-size: 12px;
        padding: 6px 10px;
    }
}
/* HİZMETLERİMİZ - ŞIK KATEGORİ BLOKLARI */
.services-modern-page {
    padding: 45px 0 70px;
    background: #f5f7fb;
}

.service-category-modern {
    background: #ffffff;
    border: 1px solid #e3ebf4;
    border-radius: 28px;
    padding: 32px;
    margin-bottom: 34px;
    box-shadow: 0 12px 28px rgba(15, 61, 117, 0.07);
}

.service-category-top {
    margin-bottom: 26px;
}

.service-category-badge {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: #eaf2fb;
    color: #0f3d75;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-category-top h2 {
    font-size: 30px;
    color: #102033;
    margin: 0 0 12px;
}

.service-category-top p {
    margin: 0;
    color: #64748b;
    line-height: 1.8;
    max-width: 900px;
}

.service-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .service-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-modern-grid {
        grid-template-columns: 1fr;
    }
}

.service-modern-card {
    background: #f8fbff;
    border: 1px solid #e1eaf4;
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(15, 61, 117, 0.08);
}

.service-modern-media {
    width: 100%;
    height: 260px;
    background: #dde6f1;
    overflow: hidden;
}

.service-modern-media img,
.service-modern-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-modern-content {
    padding: 22px;
}

.service-modern-content p {
    margin: 0;
    color: #526377;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .service-modern-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-modern-page {
        padding: 30px 0 50px;
    }

    .service-category-modern {
        padding: 20px;
        border-radius: 22px;
    }

    .service-category-top h2 {
        font-size: 24px;
    }

    .service-modern-media {
        height: 220px;
    }
}
/* İLETİŞİM SAYFASI */
.contact-page-hero {
    padding: 56px 0 38px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5fc 100%);
    border-bottom: 1px solid #e5edf6;
}

.contact-section {
    padding: 55px 0;
    background: #f5f7fb;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e2eaf3;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(15, 61, 117, 0.06);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(15, 61, 117, 0.10);
}

.contact-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf2fb;
    color: #0f3d75;
    font-size: 22px;
    margin-bottom: 18px;
}

.contact-card h3 {
    font-size: 24px;
    color: #102033;
    margin: 0 0 18px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #526377;
    line-height: 1.7;
}

.contact-list li i {
    color: #0f3d75;
    margin-top: 4px;
    min-width: 18px;
}

.social-section {
    padding: 10px 0 55px;
    background: #f5f7fb;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.social-card {
    background: #ffffff;
    border: 1px solid #e2eaf3;
    border-radius: 20px;
    padding: 22px;
    text-decoration: none;
    color: #102033;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(15, 61, 117, 0.05);
    transition: all 0.3s ease;
}

.social-card i {
    font-size: 22px;
    color: #0f3d75;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(15, 61, 117, 0.10);
}

.contact-form-section {
    padding: 10px 0 70px;
    background: #f5f7fb;
}

.contact-form-box {
    background: #ffffff;
    border: 1px solid #e2eaf3;
    border-radius: 28px;
    padding: 34px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    box-shadow: 0 12px 26px rgba(15, 61, 117, 0.06);
}

.contact-form-text h2 {
    font-size: 32px;
    color: #102033;
    margin-bottom: 12px;
}

.contact-form-text p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.contact-form-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-box {
    width: 100%;
    min-height: 230px;
    border: 2px dashed #cdd9e7;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    background: #f8fbff;
}

.placeholder-box i {
    font-size: 34px;
    color: #0f3d75;
    margin-bottom: 14px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .contact-card,
    .contact-form-box {
        padding: 22px;
    }

    .contact-form-text h2 {
        font-size: 26px;
    }
}
body {
    position: relative;
    background: #f8fbf8;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.55;
}

body::before {
    width: 420px;
    height: 420px;
    top: 80px;
    left: -120px;
    background:
        radial-gradient(circle, rgba(196, 181, 253, 0.55) 0%, rgba(196, 181, 253, 0.18) 45%, transparent 72%);
}

body::after {
    width: 420px;
    height: 420px;
    right: -120px;
    bottom: 60px;
    background:
        radial-gradient(circle, rgba(187, 247, 208, 0.55) 0%, rgba(187, 247, 208, 0.18) 45%, transparent 72%);
}

.brands-section {
    background: transparent;
}
header {
    background: transparent !important;
}

.navbar {
    background: transparent !important;
}
header,
.navbar {
    background: rgba(240, 253, 244, 0.7) !important;
    backdrop-filter: blur(8px);
}
    align-items: start;


.custom-about-grid .about-card-full {
    grid-column: 1 / -1;
}

.custom-about-grid .about-card {
    min-height: unset;
    height: auto;
}

@media (max-width: 768px) {
    .custom-about-grid {
        grid-template-columns: 1fr;
    }

    .custom-about-grid .about-card-full {
        grid-column: auto;
    }
}
.page-hero {
    display: flex;
    justify-content: center; /* yatay ortalar */
    text-align: center;
}

.page-hero-content {
    text-align: center;
    max-width: 700px;
    width: 100%;
}
.page-hero .container {
    display: flex;
    justify-content: center; /* ORTAYA ALIR */
}
/* EKİBİMİZ DÜZEN */
.team-card {
    text-align: center;
    padding: 20px 16px;
}

.team-image-frame {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
}

.team-content {
    margin-top: 30px; 
}

.team-content h3 {
    margin-bottom: 0;
    line-height: 1.2; /* 👈 sıkıştırır */
}

.team-content p {
    margin-top: 0;
    line-height: 1.2; /* 👈 asıl çözüm bu */
}
.accordion-header {
    cursor: pointer;
}

.accordion-content {
    display: none;
}

.accordion-item.active .accordion-content {
    display: grid;
}
.accordion-content {
    display: none;
}
@media (max-width: 768px) {
    .site-header {
        padding: 8px 0;
    }

    .header-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: auto;
        padding: 8px 0;
    }

    .brand {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .brand-logo {
        width: 70px;
        height: 70px;
        border-radius: 10px;
    }

    .brand-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .brand-text strong {
        font-size: 18px;
        line-height: 1.2;
    }

    .brand-text small {
        display: none;
    }

    .main-nav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        justify-content: center;
        margin-top: 6px;
    }

    .main-nav a {
        text-align: center;
        padding: 10px 8px;
        font-size: 15px;
        border-radius: 12px;
        background: rgba(255,255,255,0.65);
    }

    .main-slider-section {
        padding: 12px 0 18px;
    }

    .main-slider {
        width: 92%;
        height: 260px;
        border-radius: 22px;
    }

    .main-slide-overlay {
        padding: 18px;
    }

    .main-slide-content h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .main-slide-content p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .slide-buttons {
        gap: 8px;
        margin-top: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 14px;
        font-size: 14px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .slider-dots {
        bottom: 12px;
    }
}
@media (max-width: 768px) {
    .brand {
        flex-direction: column;
        gap: 6px;
    }

    .brand-text strong {
        font-size: 16px;
    }
}