@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #f8f9fa;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --sapphire-blue: #0984e3;
    --neon-blue: #00d2d3;
    --gold-accent: #fdcb6e;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --section-padding: 6%;
}

@media (min-width: 1600px) {
    :root {
        --section-padding: 10%;
    }
}
@media (max-width: 1199px) {
    :root {
        --section-padding: 4%;
    }
}
@media (max-width: 768px) {
    :root {
        --section-padding: 1.5rem;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, var(--bg-color) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Web Components Fix */
site-navbar, site-footer {
    display: block;
    width: 100%;
}

main {
    flex: 1;
    width: 100%;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem var(--section-padding);
    position: relative;
    z-index: 100;
    margin: 0 auto;
    width: 100%;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sapphire-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo span {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links a:hover {
    color: var(--sapphire-blue);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.5rem 0;
    min-width: 280px;
    box-shadow: var(--glass-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    font-weight: 400;
    font-size: 0.95rem;
    display: block;
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--sapphire-blue);
}

/* Buttons */
.cta-btn {
    background: linear-gradient(135deg, var(--sapphire-blue), var(--neon-blue));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.6);
    color: white !important;
}

.outline-btn {
    border: 2px solid var(--sapphire-blue);
    color: var(--sapphire-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.outline-btn:hover {
    background: var(--sapphire-blue);
    color: white;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    min-height: 80vh;
    padding: 4rem var(--section-padding);
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--sapphire-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* 3D Antigravity Area */
.antigravity-container {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    width: 100%;
}

.hero-object {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(9,132,227,0.1) 0%, rgba(0,210,211,0.2) 100%);
    box-shadow: inset 0 0 50px rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    animation: float-main 6s ease-in-out infinite;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-object::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop') center/cover;
    border-radius: 30%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: spin 20s linear infinite;
    mix-blend-mode: multiply;
}

/* Glassmorphism Cards */
.glass-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    width: 280px;
    box-shadow: var(--glass-shadow);
    z-index: 2;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 210, 211, 0.5);
    box-shadow: 0 0 20px rgba(0, 210, 211, 0.2), var(--glass-shadow);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--sapphire-blue);
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.glass-card p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.card-1 {
    top: 0%;
    left: -15%;
    animation: float 5s ease-in-out infinite 0.5s;
}

.card-2 {
    bottom: 0%;
    left: 15%;
    animation: float 7s ease-in-out infinite 1s;
}

.card-3 {
    top: 35%;
    right: -15%;
    animation: float 6s ease-in-out infinite 1.5s;
}

/* Home Sections */
.home-section {
    padding: 6rem var(--section-padding);
    width: 100%;
}

.alternate-bg {
    background: rgba(9, 132, 227, 0.02);
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.section-container {
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.center-text {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 2rem;
}

.center-button {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.split-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.glass-image-container {
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    width: 100%;
    max-width: 600px;
}

.glass-image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Futuristic Services Layout (Staggered & Always Visible) */
.futuristic-services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    padding-bottom: 4rem; /* Padding for staggered elements */
}

.f-service-panel {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem 2.5rem;
    box-shadow: var(--glass-shadow);
    z-index: 1;
}

/* Staggered arrangement for non-flat grid look */
.f-service-panel:nth-child(2) {
    margin-top: 3rem;
}
.f-service-panel:nth-child(3) {
    margin-top: 6rem;
}

.f-service-panel:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-blue);
    box-shadow: 0 15px 35px rgba(0, 210, 211, 0.15), var(--glass-shadow);
    z-index: 2;
}

.f-service-panel .f-icon {
    font-size: 3.5rem;
    color: var(--sapphire-blue);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.f-service-panel:hover .f-icon {
    transform: scale(1.1) translateY(-5px);
    color: var(--neon-blue);
}

.f-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.f-content h3 {
    font-size: 1.6rem;
    color: var(--sapphire-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.f-content p {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
    flex-grow: 1;
}

.small-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    align-self: flex-start;
}

/* Grid Cards (Static Version for Sections) */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
}

.static-card {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Blog Preview Card */
.blog-preview-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(9,132,227,0.15);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-preview-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    flex: 1;
}

.blog-content span {
    color: var(--sapphire-blue);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content h4 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Reference Logos */
.reference-logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    width: 100%;
}

.reference-logos i {
    font-size: 4rem;
    color: var(--text-secondary);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.reference-logos i:hover {
    opacity: 1;
    color: var(--sapphire-blue);
    transform: scale(1.1);
}

/* Page Headers for Subpages */
.page-header {
    text-align: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, rgba(9,132,227,0.05) 0%, rgba(0,210,211,0.05) 100%);
    width: 100%;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--sapphire-blue);
    margin-bottom: 1rem;
}

.content-section {
    padding: 4rem var(--section-padding);
    margin: 0 auto;
    width: 100%;
}

/* Footer */
.site-footer {
    background: white;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 4rem var(--section-padding) 1rem;
    margin-top: auto;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    margin: 0 auto 3rem;
}

.footer-col h3, .footer-col h4 {
    color: var(--sapphire-blue);
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--sapphire-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--sapphire-blue);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    width: 100%;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-main {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Interactive Incentives Section */
.interactive-incentives {
    display: flex;
    gap: 3rem;
    align-items: stretch; /* Sabit yükseklik için eklendi */
    margin-top: 3rem;
    width: 100%;
}

.incentive-display {
    flex: 1;
    position: relative;
    padding: 4rem 3rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
    width: 100%;
}

.incentive-display .display-icon {
    font-size: 5rem;
    color: var(--sapphire-blue);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 210, 211, 0.4);
}

.incentive-display h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.incentive-display p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.incentive-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inc-item {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.inc-item i {
    font-size: 1.5rem;
    color: var(--sapphire-blue);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.inc-item:hover {
    transform: translateX(-10px);
    background: var(--bg-color);
}

.inc-item.active {
    background: linear-gradient(135deg, var(--sapphire-blue), var(--neon-blue));
    color: white;
    transform: translateX(-15px);
    box-shadow: 0 10px 20px rgba(9, 132, 227, 0.3);
    border: none;
}

.inc-item.active i {
    color: white;
    opacity: 1;
}

@media (max-width: 968px) {
    .interactive-incentives {
        flex-direction: column;
    }
    .inc-item:hover, .inc-item.active {
        transform: translateX(0) scale(1.02);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    .cta-btn {
        display: none;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .antigravity-container {
        width: 100%;
        margin-top: 2rem;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding: 2rem 5%;
        height: auto;
        justify-content: flex-start;
        align-items: center;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .antigravity-container::-webkit-scrollbar {
        display: none;
    }
    .hero-object {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.6);
        z-index: 0;
    }
    .card-1, .card-2, .card-3 {
        position: relative;
        top: auto; left: auto; right: auto; bottom: auto;
        margin: 0;
        animation: none;
        flex: 0 0 85%;
        max-width: 320px;
        scroll-snap-align: center;
        z-index: 2;
    }
    
    .split-layout, .split-layout.reverse {
        flex-direction: column;
        text-align: left;
        gap: 2rem;
    }
    
    .home-section {
        padding: 4rem var(--section-padding);
    }
    
    .grid-cards {
        gap: 1.5rem;
    }
    
    .futuristic-services-container {
        flex-direction: column;
        height: auto;
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .f-service-panel:nth-child(2),
    .f-service-panel:nth-child(3) {
        margin-top: 0;
    }
    
    .f-service-panel {
        height: auto;
        min-height: 200px;
    }
    .f-service-panel:hover {
        height: auto;
    }
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu-close {
    font-size: 2rem;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
}

.mobile-nav-links > li > a, .mobile-nav-links > li > span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-dropdown-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 1rem;
    margin-top: 0;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    margin-top: 1rem;
}

.mobile-dropdown.open > span {
    color: var(--sapphire-blue);
}

.mobile-dropdown.open > span i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu li {
    margin-bottom: 1rem;
}

.mobile-dropdown-menu li:last-child {
    margin-bottom: 0;
}

.mobile-dropdown-menu a {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-decoration: none;
}

.mobile-contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.mobile-contact-info h4 {
    font-size: 1.2rem;
    color: var(--sapphire-blue);
    margin-bottom: 1rem;
}

.mobile-contact-info p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.mobile-cta-btn {
    display: inline-block;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--sapphire-blue), var(--neon-blue));
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

/* Extracted from blog-detay.html */

        /* Blog Detail Specific Styles */
        .article-hero {
            position: relative;
            width: 100%;
            height: 60vh;
            min-height: 400px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .article-hero-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        
        .article-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
            z-index: 2;
        }
        
        .article-hero-content {
            position: relative;
            z-index: 3;
            padding: 0 var(--section-padding);
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            color: white;
            margin-top: 5rem;
        }

        .article-category {
            display: inline-block;
            background: var(--sapphire-blue);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .article-title {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .article-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .article-meta i {
            margin-right: 0.5rem;
            color: var(--neon-blue);
        }

        .article-container {
            padding: 5rem var(--section-padding);
            width: 100%;
            background: var(--bg-color);
        }

        .article-content {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 4rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.03);
        }

        .article-content p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .article-content h3 {
            font-size: 1.8rem;
            color: var(--text-primary);
            margin: 2.5rem 0 1rem;
        }

        .article-content blockquote {
            border-left: 5px solid var(--sapphire-blue);
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            background: rgba(9, 132, 227, 0.05);
            font-size: 1.25rem;
            font-style: italic;
            color: var(--sapphire-blue);
            border-radius: 0 10px 10px 0;
        }

        .share-section {
            max-width: 800px;
            margin: 3rem auto 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

        .share-buttons {
            display: flex;
            gap: 1rem;
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            color: var(--sapphire-blue);
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .share-btn:hover {
            background: var(--sapphire-blue);
            color: white;
            transform: translateY(-3px);
        }

        .back-to-blog {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .back-to-blog:hover {
            color: var(--sapphire-blue);
        }

        /* Related Blogs Styles */
        .related-blogs-section {
            padding: 4rem var(--section-padding) 6rem;
            background: linear-gradient(to bottom, var(--bg-color), white);
            width: 100%;
        }
        .related-title {
            font-size: 2rem;
            color: var(--sapphire-blue);
            margin-bottom: 3rem;
            text-align: center;
        }
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 3rem;
            width: 100%;
        }
        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            cursor: pointer;
        }
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 45px rgba(9, 132, 227, 0.1);
        }
        .blog-image-wrapper {
            position: relative;
            height: 240px;
            overflow: hidden;
        }
        .blog-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .blog-card:hover .blog-image { transform: scale(1.08); }
        .blog-category-badge {
            position: absolute; top: 1rem; right: 1rem;
            background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px);
            color: var(--sapphire-blue); padding: 0.5rem 1.2rem;
            border-radius: 30px; font-size: 0.85rem; font-weight: 700;
        }
        .blog-content { padding: 2.5rem 2rem; flex: 1; display: flex; flex-direction: column; }
        .blog-title { font-size: 1.4rem; color: var(--text-primary); margin-bottom: 1rem; font-weight: 700; transition: color 0.3s ease; }
        .blog-card:hover .blog-title { color: var(--sapphire-blue); }
        .blog-excerpt { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 2rem; flex: 1; }
        .blog-read-more { display: flex; align-items: center; gap: 0.5rem; color: var(--neon-blue); font-weight: 700; }
        .blog-read-more i { transition: transform 0.3s ease; }
        .blog-card:hover .blog-read-more i { transform: translateX(5px); }

        @media (max-width: 768px) {
            .article-title {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 2rem;
            }
        }
    

.safir-inline-795f3c {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.safir-inline-b25d56 {
    color: var(--text-primary);
}

.safir-inline-ee8a4b {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.safir-inline-93d42e {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Extracted from blog.html */

        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(9, 132, 227, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        .page-hero-title {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .page-hero-subtitle {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .blog-section {
            padding: 4rem var(--section-padding) 6rem;
            margin: 0 auto;
            width: 100%;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 3rem;
            width: 100%;
        }

        /* Modern Blog Card */
        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            cursor: pointer;
        }
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 45px rgba(9, 132, 227, 0.1);
        }

        .blog-image-wrapper {
            position: relative;
            height: 240px;
            overflow: hidden;
        }
        .blog-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .blog-card:hover .blog-image {
            transform: scale(1.08);
        }

        .blog-category-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            color: var(--sapphire-blue);
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            z-index: 2;
        }

        .blog-content {
            padding: 2.5rem 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-title {
            font-size: 1.4rem;
            color: var(--text-primary);
            line-height: 1.4;
            margin-bottom: 1rem;
            font-weight: 700;
            transition: color 0.3s ease;
        }
        .blog-card:hover .blog-title {
            color: var(--sapphire-blue);
        }

        .blog-excerpt {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            flex: 1; /* Pushes the read-more button to the bottom */
        }

        .blog-read-more {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--neon-blue);
            font-weight: 700;
            font-size: 1rem;
        }
        .blog-read-more i {
            transition: transform 0.3s ease;
        }
        .blog-card:hover .blog-read-more i {
            transform: translateX(5px);
        }

        /* Abstract shapes for hero */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 {
            width: 300px;
            height: 300px;
            background: rgba(9, 132, 227, 0.2);
            top: -100px;
            left: -100px;
        }
        .shape-2 {
            width: 400px;
            height: 400px;
            background: rgba(0, 210, 211, 0.15);
            bottom: -200px;
            right: -100px;
        }

    

.safir-inline-c962d7 {
    position: relative;
    z-index: 2;
}

/* Extracted from devlet-tesvikleri.html */

        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(9, 132, 227, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        
        .page-hero-title {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }

        .page-hero-subtitle {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Abstract shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(9, 132, 227, 0.2); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }

        .programs-nav {
            padding: 3rem var(--section-padding) 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .nav-pill {
            background: white;
            color: var(--sapphire-blue);
            padding: 1rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.04);
            border: 1px solid rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }

        .nav-pill:hover {
            background: var(--sapphire-blue);
            color: white;
            transform: translateY(-3px);
        }

        .programs-container {
            padding: 4rem var(--section-padding) 6rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .program-card {
            background: white;
            border-radius: 20px;
            padding: 4rem 3rem;
            margin-bottom: 4rem;
            box-shadow: 0 15px 40px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
        }

        .program-card h2 {
            font-size: 2rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .program-card h2 i {
            color: var(--neon-blue);
            background: rgba(0, 210, 211, 0.1);
            padding: 1rem;
            border-radius: 15px;
            font-size: 1.5rem;
        }

        .program-card p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .program-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(9, 132, 227, 0.05);
            color: var(--sapphire-blue);
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
            transition: all 0.3s ease;
            word-break: break-all;
        }

        .program-link:hover {
            background: var(--sapphire-blue);
            color: white;
        }

        .email-alert {
            background: linear-gradient(135deg, rgba(9, 132, 227, 0.05), rgba(0, 210, 211, 0.05));
            border-left: 4px solid var(--sapphire-blue);
            padding: 1.5rem 2rem;
            border-radius: 0 15px 15px 0;
            margin-top: 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .email-alert i {
            font-size: 2rem;
            color: var(--neon-blue);
        }

        .email-alert p {
            margin: 0;
            font-size: 1.05rem;
        }
        
        .email-alert a {
            color: var(--sapphire-blue);
            font-weight: 700;
            text-decoration: none;
        }

        /* Image Placeholder Block */
        .image-placeholder {
            width: 100%;
            height: 300px;
            background: rgba(0,0,0,0.03);
            border: 2px dashed rgba(0,0,0,0.1);
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            margin: 2rem 0;
            text-align: center;
            padding: 2rem;
        }

        .image-placeholder i {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: rgba(0,0,0,0.2);
        }

        /* Infographic Grid */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 2.5rem 0;
        }

        .info-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(9, 132, 227, 0.1);
        }

        .info-card .info-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .info-card .info-title {
            font-size: 0.95rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .info-card .info-value {
            font-size: 1.8rem;
            color: var(--text-primary);
            font-weight: 800;
        }

        /* Specific colors for the first infographic */
        .card-red .info-icon { color: #e74c3c; }
        .card-green .info-icon { color: #2ecc71; }
        .card-blue .info-icon { color: #3498db; }
        .card-purple .info-icon { color: #9b59b6; }

        /* Conditions List */
        .conditions-section {
            margin-top: 3rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 2rem;
            margin-bottom: 2rem;
        }
        .conditions-section h3 {
            font-size: 1.4rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
        }
        .conditions-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .condition-item {
            background: linear-gradient(to right, rgba(9, 132, 227, 0.05), white);
            border-left: 4px solid var(--sapphire-blue);
            padding: 1.2rem 1.5rem;
            border-radius: 0 10px 10px 0;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 1.05rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .condition-item i {
            color: var(--neon-blue);
            font-size: 1.2rem;
        }
        .condition-item:hover {
            transform: translateX(10px);
            background: linear-gradient(to right, rgba(9, 132, 227, 0.1), white);
            box-shadow: 0 6px 15px rgba(9, 132, 227, 0.05);
        }

        @media (max-width: 768px) {
            .program-card {
                padding: 2rem;
            }
            .email-alert {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
    

.safir-inline-7fdfe7 {
    color:var(--text-secondary);
    display:block;
    margin-top:0.2rem;
}

/* Extracted from erp.html */

        /* Specific Styles for Detail Page */
        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 6rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(9, 132, 227, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        .page-hero-title {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .page-hero-subtitle {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        /* Abstract shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(9, 132, 227, 0.2); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }
        
        .detail-section {
            padding: 4rem var(--section-padding);
            margin: 0 auto;
            width: 100%;
        }
        
        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: -3rem auto 4rem;
            width: 100%;
            position: relative;
            z-index: 2;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-icon {
            font-size: 2.5rem;
            color: var(--neon-blue);
            margin-bottom: 1rem;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--sapphire-blue);
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 600;
            text-transform: uppercase;
        }

        /* Checkmark List */
        .check-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        .check-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            font-weight: 600;
            color: var(--text-primary);
        }
        .check-list i {
            color: var(--neon-blue);
            font-size: 1.2rem;
        }

        /* Modern Timeline */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 4rem auto;
        }
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 24px;
            height: 100%;
            width: 2px;
            background: rgba(9, 132, 227, 0.2);
        }
        .timeline-item {
            position: relative;
            padding-left: 70px;
            margin-bottom: 3rem;
        }
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        .timeline-icon {
            position: absolute;
            left: 0;
            top: 0;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--sapphire-blue);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 0 0 5px rgba(9, 132, 227, 0.2);
            z-index: 1;
        }
        .timeline-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.02);
        }
        .timeline-content h4 {
            color: var(--sapphire-blue);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        .timeline-content p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        /* Content Blocks */
        .content-block {
            margin-bottom: 4rem;
        }
        .content-block h3 {
            font-size: 2rem;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .content-block p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .cta-banner {
            background: linear-gradient(135deg, var(--sapphire-blue), #075b9e);
            border-radius: 20px;
            padding: 4rem 2rem;
            text-align: center;
            color: white;
            margin: 4rem auto;
            width: 100%;
            box-shadow: 0 20px 40px rgba(9, 132, 227, 0.3);
        }
        .cta-banner h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        .cta-banner p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-inline: auto;
        }
        .cta-banner .cta-btn {
            background: white;
            color: var(--sapphire-blue);
            border: none;
        }
        .cta-banner .cta-btn:hover {
            background: var(--neon-blue);
            color: white;
            box-shadow: 0 10px 20px rgba(0, 210, 211, 0.4);
        }

    

.safir-inline-bcc4d8 {
    color: var(--neon-blue);
}

.safir-inline-cf0f3a {
    margin-top: 2rem;
}

.safir-inline-c809d2 {
    color: var(--sapphire-blue);
}

.safir-inline-87713c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.safir-inline-6182b0 {
    background: rgba(9, 132, 227, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 0;
}

.safir-inline-fa415b {
    font-size: 1.5rem;
}

.safir-inline-1f0261 {
    font-size: 1rem;
}

.safir-inline-abef5a {
    background: rgba(0, 210, 211, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 0;
}

.safir-inline-e7108b {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.safir-inline-95f7f0 {
    justify-content: center;
}

.safir-inline-9ef77e {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

/* Extracted from finansal-yonetim.html */

        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(9, 132, 227, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        .page-hero-title {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .page-hero-subtitle {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Abstract shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(9, 132, 227, 0.2); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }

        .finance-intro {
            padding: 5rem var(--section-padding);
            width: 100%;
            background: white;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .finance-intro p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .finance-intro .highlight {
            font-weight: 700;
            color: var(--sapphire-blue);
        }

        /* Split Layout for Services */
        .service-section {
            padding: 5rem var(--section-padding);
            width: 100%;
            background: linear-gradient(to bottom, var(--bg-color), white);
        }

        .split-layout {
            display: flex;
            align-items: center;
            gap: 5rem;
            margin-bottom: 6rem;
        }

        .split-layout.reverse {
            flex-direction: row-reverse;
        }

        .split-content {
            flex: 1;
        }

        .split-content h2 {
            font-size: 2.2rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .split-content h2 i {
            color: var(--neon-blue);
            font-size: 2.5rem;
        }

        .split-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.2rem;
            position: relative;
            padding-left: 2rem;
        }

        .split-content p::before {
            content: '\f111'; /* FontAwesome circle */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0.3rem;
            font-size: 0.6rem;
            color: var(--neon-blue);
        }

        .split-image {
            flex: 1;
            position: relative;
        }

        .split-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
        }

        .image-backdrop {
            position: absolute;
            top: -2rem;
            left: -2rem;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(9, 132, 227, 0.1), rgba(0, 210, 211, 0.1));
            border-radius: 20px;
            z-index: 1;
        }

        .split-layout.reverse .image-backdrop {
            left: auto;
            right: -2rem;
        }

        /* Banner for Analysis & Reporting */
        .analysis-banner {
            background: linear-gradient(135deg, var(--sapphire-blue), var(--neon-blue));
            padding: 5rem var(--section-padding);
            border-radius: 30px;
            color: white;
            text-align: center;
            box-shadow: 0 20px 40px rgba(9, 132, 227, 0.2);
            max-width: 1200px;
            margin: 0 auto 5rem;
            position: relative;
            overflow: hidden;
        }

        .analysis-banner i {
            font-size: 5rem;
            opacity: 0.1;
            position: absolute;
            top: -10px;
            right: 50px;
        }

        .analysis-banner h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .analysis-banner p {
            font-size: 1.25rem;
            line-height: 1.8;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Schema Design */
        .schema-wrapper {
            background: white;
            border-radius: 20px;
            padding: 4rem;
            margin: 0 auto 6rem;
            box-shadow: 0 15px 40px rgba(0,0,0,0.04);
            max-width: 1200px;
        }

        .schema-title {
            font-size: 2rem;
            color: var(--sapphire-blue);
            text-align: center;
            margin-bottom: 3rem;
        }

        .schema-layout {
            display: flex;
            gap: 4rem;
            align-items: flex-start;
        }

        .schema-main-flow {
            flex: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .schema-box {
            background: white;
            border: 2px solid var(--sapphire-blue);
            border-radius: 15px;
            padding: 1.5rem;
            width: 100%;
            box-shadow: 0 10px 20px rgba(9, 132, 227, 0.05);
            transition: all 0.3s ease;
        }

        .schema-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(9, 132, 227, 0.1);
        }

        .box-title {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--sapphire-blue);
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding-bottom: 0.5rem;
            text-align: center;
        }

        .schema-box ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .schema-box ul li {
            padding: 0.3rem 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .schema-box ul li::before {
            content: '\f111';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.4rem;
            color: var(--neon-blue);
        }

        .arrow-down {
            font-size: 2rem;
            color: var(--neon-blue);
            margin: 1rem 0;
            animation: bounceDown 2s infinite;
        }

        @keyframes bounceDown {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(10px); }
            60% { transform: translateY(5px); }
        }

        .schema-core {
            display: flex;
            align-items: stretch;
            gap: 1rem;
            width: 100%;
        }

        .core-arrows {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            color: var(--neon-blue);
        }

        .result-box, .final-box {
            background: var(--sapphire-blue);
            color: white;
            text-align: center;
            font-weight: 700;
            font-size: 1.2rem;
            padding: 1rem;
            width: 60%;
            border: none;
        }
        
        .final-box {
            background: var(--neon-blue);
        }

        .schema-side-flow {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 2rem;
            margin-top: 5rem;
        }

        .side-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .side-label {
            background: rgba(9, 132, 227, 0.05);
            color: var(--sapphire-blue);
            font-weight: 700;
            padding: 1rem;
            border-radius: 10px;
            flex: 1;
            text-align: center;
            font-size: 0.9rem;
        }

        .side-item i {
            color: var(--neon-blue);
            font-size: 1.2rem;
        }

        .side-value {
            background: var(--sapphire-blue);
            color: white;
            font-weight: 700;
            padding: 1rem;
            border-radius: 10px;
            flex: 1;
            text-align: center;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(9, 132, 227, 0.2);
        }

        /* Styled List (Reused from Devlet Tesvikleri) */
        .conditions-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .condition-item {
            background: linear-gradient(to right, rgba(9, 132, 227, 0.05), white);
            border-left: 4px solid var(--sapphire-blue);
            padding: 1.5rem;
            border-radius: 0 15px 15px 0;
            color: var(--text-primary);
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
        }
        .condition-item i {
            color: var(--neon-blue);
            font-size: 1.5rem;
            margin-top: 0.2rem;
        }
        .condition-item:hover {
            transform: translateX(10px);
            background: linear-gradient(to right, rgba(9, 132, 227, 0.1), white);
            box-shadow: 0 8px 20px rgba(9, 132, 227, 0.08);
        }

        @media (max-width: 968px) {
            .split-layout, .split-layout.reverse {
                flex-direction: column;
                gap: 3rem;
            }
            .split-content p::before {
                top: 0.4rem;
            }
            .image-backdrop {
                display: none;
            }
            .schema-layout {
                flex-direction: column;
            }
            .schema-core {
                flex-direction: column;
            }
            .core-arrows {
                transform: rotate(90deg);
                margin: 1rem auto;
            }
            .schema-side-flow {
                margin-top: 2rem;
                width: 100%;
            }
        }
    

.safir-inline-d5e8c5 {
    flex:1;
}

.safir-inline-5cbeff {
    flex:1;
    background: rgba(9, 132, 227, 0.02);
}

.safir-inline-c42e0e {
    margin-bottom: 0;
}

.safir-inline-e1aaaf {
    background: linear-gradient(135deg, rgba(0, 210, 211, 0.1), rgba(9, 132, 227, 0.1));
    left: 2rem;
}

.safir-inline-26c6d7 {
    border-left-color: var(--neon-blue);
}

.safir-inline-c0a1a3 {
    color: var(--sapphire-blue);
    display:block;
    margin-bottom:0.4rem;
    font-size:1.1rem;
}

.safir-inline-8200f2 {
    font-size:1rem;
    color: var(--text-secondary);
    line-height:1.6;
    display:block;
}

.safir-inline-6525ad {
    margin-top: 6rem;
    margin-bottom: 0;
}

.safir-inline-e398a1 {
    background: linear-gradient(135deg, rgba(9, 132, 227, 0.1), rgba(0, 210, 211, 0.1));
    left: -2rem;
}

.safir-inline-449a46 {
    font-size:1.05rem;
    color: var(--text-primary);
    line-height:1.6;
    font-weight:600;
}

/* Extracted from gizlilik.html */

        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(9, 132, 227, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        .page-hero-title {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .page-hero-subtitle {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(9, 132, 227, 0.2); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }

        .privacy-content {
            max-width: 900px;
            margin: 4rem auto 8rem;
            padding: 0 var(--section-padding);
            background: white;
            padding: 4rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.1rem;
        }
        .privacy-content p {
            margin-bottom: 1.5rem;
        }
        
        @media (max-width: 768px) {
            .privacy-content {
                padding: 2rem;
            }
        }
    

/* Extracted from hakkimizda.html */

        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(9, 132, 227, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        .page-hero-title {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .page-hero-subtitle {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Abstract shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(9, 132, 227, 0.2); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }

        .about-section {
            padding: 6rem var(--section-padding);
            width: 100%;
        }

        /* Two Column Layout */
        .split-layout {
            display: flex;
            align-items: center;
            gap: 5rem;
            margin-bottom: 8rem;
        }

        .split-layout.reverse {
            flex-direction: row-reverse;
        }

        .split-content {
            flex: 1;
        }

        .split-content h2 {
            font-size: 2.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .split-content h2::after {
            content: '';
            flex: 1;
            height: 2px;
            background: linear-gradient(to right, rgba(9, 132, 227, 0.2), transparent);
        }

        .split-content p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .split-image {
            flex: 1;
            position: relative;
        }

        .split-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
        }

        .image-backdrop {
            position: absolute;
            top: 2rem;
            left: -2rem;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(9, 132, 227, 0.1), rgba(0, 210, 211, 0.1));
            border-radius: 20px;
            z-index: 1;
        }
        
        .split-layout.reverse .image-backdrop {
            left: auto;
            right: -2rem;
        }

        /* Stats Grid */
        .stats-wrapper {
            background: linear-gradient(135deg, var(--sapphire-blue), var(--neon-blue));
            padding: 5rem var(--section-padding);
            border-radius: 30px;
            color: white;
            margin: 0 auto 6rem;
            box-shadow: 0 20px 40px rgba(9, 132, 227, 0.2);
        }

        .stats-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .stats-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .stats-header p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-text {
            font-size: 1.1rem;
            font-weight: 600;
            opacity: 0.9;
        }

        @media (max-width: 968px) {
            .split-layout, .split-layout.reverse {
                flex-direction: column;
                gap: 3rem;
            }
            .image-backdrop {
                display: none;
            }
        }

    

/* Extracted from hizmetler.html */

        .service-section {
            padding: 5rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .service-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            color: var(--sapphire-blue);
        }
        .service-header i {
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--sapphire-blue), var(--neon-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .service-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            border-left: 4px solid var(--sapphire-blue);
        }
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(9,132,227,0.15);
        }
        .service-item h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }
        .service-item p {
            color: var(--text-secondary);
            line-height: 1.6;
        }
    

.safir-inline-211a04 {
    border-bottom: none;
}

/* Extracted from iletisim.html */

        .page-hero {
            position: relative;
            padding: 8rem 2rem 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(9, 132, 227, 0.05));
            overflow: hidden;
            text-align: center;
        }
        .page-hero-title {
            font-size: 3rem;
            color: var(--sapphire-blue);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .contact-container {
            width: 100%;
            margin: 4rem auto 6rem;
            padding: 0 var(--section-padding);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        @media (max-width: 900px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        .contact-section-title {
            font-size: 2rem;
            color: var(--sapphire-blue);
            margin-bottom: 2rem;
        }

        /* Form Styles */
        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        .form-control {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            color: var(--text-primary);
            background: #f8fafc;
            transition: all 0.3s ease;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--neon-blue);
            background: white;
            box-shadow: 0 0 0 4px rgba(0, 210, 211, 0.1);
        }
        textarea.form-control {
            resize: vertical;
            min-height: 200px;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .checkbox-group input[type="checkbox"] {
            margin-top: 0.3rem;
            width: 18px;
            height: 18px;
            accent-color: var(--sapphire-blue);
            cursor: pointer;
        }
        .checkbox-group label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .checkbox-group a {
            color: var(--text-primary);
            font-weight: 700;
            text-decoration: underline;
            text-decoration-color: var(--sapphire-blue);
            text-underline-offset: 4px;
        }

        .submit-btn {
            background: var(--sapphire-blue);
            color: white;
            border: none;
            padding: 1rem 3rem;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        .submit-btn:hover {
            background: var(--neon-blue);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 210, 211, 0.3);
        }

        /* Location Styles */
        .location-info {
            background: #f8fafc;
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .address-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.03);
        }
        .address-text-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .address-icon {
            font-size: 2rem;
            color: var(--sapphire-blue);
            background: rgba(9, 132, 227, 0.1);
            padding: 1rem;
            border-radius: 12px;
        }
        .address-text {
            color: var(--text-primary);
            line-height: 1.5;
            font-size: 0.95rem;
        }
        .address-text strong {
            font-weight: 700;
            color: var(--sapphire-blue);
        }
        .directions-btn {
            background: var(--sapphire-blue);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        .directions-btn:hover {
            background: var(--neon-blue);
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
            flex-grow: 1;
            min-height: 350px;
            position: relative;
        }
        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        @media (max-width: 768px) {
            .address-card {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
            .address-text-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .directions-btn {
                width: 100%;
                text-align: center;
            }
        }

    

.safir-inline-a3ef57 {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.safir-inline-9f1494 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.safir-inline-d95a18 {
    flex: 1;
    min-width: 320px;
    padding: 1.5rem;
    justify-content: flex-start;
}

.safir-inline-a1f282 {
    font-size: 1.2rem;
    padding: 1rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safir-inline-b03375 {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    font-size: 1.05rem;
    font-weight: 500;
}

.safir-inline-3e377c {
    color: inherit;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
}

.safir-inline-db04d5 {
    position: relative;
    overflow: hidden;
}

.safir-inline-671037 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at -20% 50%, rgba(9,132,227,0.05) 0%, transparent 70%);
    z-index: -1;
}

.safir-inline-da7401 {
    color: var(--sapphire-blue);
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.safir-inline-6f7412 {
    margin-bottom: 1rem;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.safir-inline-c8d82a {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.safir-inline-645b86 {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.safir-inline-c4ad81 {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--neon-blue);
}

.safir-inline-d58e81 {
    font-size: 2.2rem;
    color: var(--sapphire-blue);
    margin-bottom: 0.2rem;
    line-height: 1;
}

.safir-inline-5b3dce {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
}

.safir-inline-d16b06 {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--sapphire-blue);
}

.safir-inline-600069 {
    margin-left: 0.5rem;
}

.safir-inline-d85c4e {
    position: relative;
}

.safir-inline-181181 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neon-blue), var(--sapphire-blue));
    filter: blur(60px);
    opacity: 0.15;
    z-index: 0;
    border-radius: 50%;
    transform: translate(-10%, 10%);
}

.safir-inline-83d7ea {
    position: relative;
    z-index: 1;
}

.safir-inline-a33e22 {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(9,132,227,0.15);
    width: 100%;
    display: block;
}

.safir-inline-3a60ef {
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-color: rgba(9,132,227,0.3);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    animation: float 6s ease-in-out infinite;
}

.safir-inline-a97ea0 {
    background: rgba(9,132,227,0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sapphire-blue);
    font-size: 1.4rem;
}

.safir-inline-538f15 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.safir-inline-556fbd {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.safir-inline-28f318 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(9,132,227,0.02) 100%);
}

.safir-inline-5fe6d9 {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.safir-inline-32b8fe {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(0,210,211,0.1);
    color: var(--neon-blue);
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(0,210,211,0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.safir-inline-c02c7d {
    margin-right: 5px;
}

.safir-inline-26d15c {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.safir-inline-6faf11 {
    margin-bottom: 3rem;
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.safir-inline-79d717 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem;
    text-align: left;
}

.safir-inline-fd0447 {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    border: 1px solid rgba(0,0,0,0.02);
}

.safir-inline-0f561b {
    background: rgba(9,132,227,0.1);
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sapphire-blue);
    font-size: 1.4rem;
}

.safir-inline-ec3152 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.safir-inline-12c979 {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.safir-inline-e61521 {
    background: rgba(0,210,211,0.1);
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    font-size: 1.4rem;
}

.safir-inline-aea51f {
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

.safir-inline-526380 {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.safir-inline-c473aa {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.safir-inline-c6c7da {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.safir-inline-e5af8d {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.safir-inline-91775b {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--sapphire-blue);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.safir-inline-4532b6 {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.safir-inline-492f6b {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.safir-inline-0e6593 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.safir-inline-e95c36 {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.safir-inline-a99e8d {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.safir-inline-8980fe {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--neon-blue);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.safir-inline-2989fc {
    color: var(--sapphire-blue);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.safir-inline-d60407 {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--text-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.safir-inline-0bb3f9 {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.safir-inline-20711e {
    margin-top: 3.5rem;
}

.safir-inline-a31b64 {
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
}

/* Extracted from kvkk.html */

        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(9, 132, 227, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        .page-hero-title {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .page-hero-subtitle {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(9, 132, 227, 0.2); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }

        .kvkk-content {
            max-width: 900px;
            margin: 4rem auto 8rem;
            padding: 0 var(--section-padding);
            background: white;
            padding: 4rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.1rem;
        }
        .kvkk-content h3 {
            color: var(--sapphire-blue);
            font-size: 1.5rem;
            margin-top: 3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(9, 132, 227, 0.1);
        }
        .kvkk-content h3:first-child {
            margin-top: 0;
        }
        .kvkk-content p {
            margin-bottom: 1.5rem;
        }
        .kvkk-content ul {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }
        .kvkk-content li {
            margin-bottom: 0.8rem;
        }
        .contact-info {
            background: rgba(9, 132, 227, 0.05);
            padding: 2rem;
            border-radius: 12px;
            margin-top: 3rem;
            border-left: 4px solid var(--sapphire-blue);
        }

        @media (max-width: 768px) {
            .kvkk-content {
                padding: 2rem;
            }
        }
    

.safir-inline-5bc010 {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 0;
}

.safir-inline-3d7b01 {
    color: var(--neon-blue);
    width: 20px;
}

.safir-inline-c610b8 {
    color: inherit;
}

/* Extracted from referanslar.html */

        .page-hero.ref-hero {
            position: relative;
            padding: 8rem var(--section-padding) 4rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(9, 132, 227, 0.05));
            display: flex;
            align-items: center;
            gap: 4rem;
            width: 100%;
            overflow: hidden;
        }

        .page-hero-content {
            flex: 1;
            max-width: 600px;
            z-index: 2;
        }

        .page-hero-title {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }

        .page-hero-subtitle {
            color: var(--text-secondary);
            font-size: 1.15rem;
            line-height: 1.7;
        }

        .page-hero-image {
            flex: 1;
            position: relative;
            z-index: 2;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .page-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Abstract shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(9, 132, 227, 0.2); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: 20%; }

        /* References Layout */
        .references-container {
            display: flex;
            align-items: flex-start;
            gap: 3rem;
            padding: 5rem var(--section-padding) 8rem;
            width: 100%;
        }

        /* Sidebar Navigation */
        .category-sidebar {
            position: sticky;
            top: 120px;
            min-width: 280px;
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
        }

        .category-sidebar h3 {
            font-size: 1.2rem;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .category-nav {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .category-nav a {
            display: block;
            padding: 0.8rem 1rem;
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .category-nav a:hover, .category-nav a.active {
            background: rgba(9, 132, 227, 0.05);
            color: var(--sapphire-blue);
            transform: translateX(5px);
        }

        /* Main Content */
        .references-content {
            flex: 1;
            width: 100%;
        }

        .ref-category-section {
            margin-bottom: 5rem;
            scroll-margin-top: 120px; /* offset for sticky header if any */
        }

        .ref-category-section h2 {
            font-size: 2rem;
            color: var(--text-primary);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .ref-category-section h2::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, rgba(9, 132, 227, 0.2), transparent);
        }

        /* Logo Grid & Cards */
        .logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .logo-card {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: default;
            overflow: hidden;
        }

        .logo-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(9, 132, 227, 0.1);
            border-color: rgba(9, 132, 227, 0.2);
            background: linear-gradient(to bottom, white, rgba(9, 132, 227, 0.02));
        }

        .logo-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.7);
            transition: all 0.4s ease;
        }

        .logo-card:hover img {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .page-hero.ref-hero {
                flex-direction: column;
                text-align: center;
                padding-top: 6rem;
            }
            .references-container {
                flex-direction: column;
            }
            .category-sidebar {
                width: 100%;
                position: static;
                margin-bottom: 2rem;
            }
            .logo-grid {
                grid-template-columns: 1fr;
            }
        }
    

/* Extracted from stratejik-yonetim.html */

        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 6rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(9, 132, 227, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        
        .page-hero-title {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }

        .page-hero-subtitle {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Abstract shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(9, 132, 227, 0.2); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }

        .strategy-intro {
            padding: 5rem var(--section-padding);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 5rem;
            background: white;
        }

        .strategy-intro-content {
            flex: 1;
        }
        
        .strategy-intro-content h2 {
            font-size: 2.2rem;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
        }

        .strategy-intro-content p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .strategy-intro-image {
            flex: 1;
            position: relative;
        }

        .strategy-intro-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .strategy-steps-section {
            padding: 6rem var(--section-padding);
            width: 100%;
            background: linear-gradient(to bottom, var(--bg-color), white);
        }

        .steps-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .steps-header h2 {
            font-size: 2.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1rem;
        }
        .steps-header p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .steps-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step-card {
            flex: 1 1 300px;
            max-width: 350px;
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--sapphire-blue), var(--neon-blue));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(9, 132, 227, 0.1);
        }

        .step-card:hover::before {
            transform: scaleX(1);
        }

        .step-icon {
            width: 60px;
            height: 60px;
            background: rgba(9, 132, 227, 0.1);
            color: var(--sapphire-blue);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .step-card:hover .step-icon {
            background: var(--sapphire-blue);
            color: white;
            transform: scale(1.1);
        }

        .step-number {
            position: absolute;
            right: 1.5rem;
            top: 1.5rem;
            font-size: 4rem;
            font-weight: 800;
            color: rgba(9, 132, 227, 0.08); /* slightly more visible */
            z-index: 0;
            line-height: 1;
        }

        .step-title {
            font-size: 1.25rem;
            color: var(--text-primary);
            font-weight: 700;
            line-height: 1.5;
            position: relative;
            z-index: 2;
        }

        @media (max-width: 968px) {
            .strategy-intro {
                flex-direction: column;
            }
        }
    

/* Extracted from turquality.html */

        /* Specific Styles for Turquality Page */
        .page-hero {
            position: relative;
            padding: 8rem var(--section-padding) 6rem;
            background: linear-gradient(135deg, var(--bg-color), rgba(9, 132, 227, 0.05));
            overflow: hidden;
            text-align: center;
            width: 100%;
        }
        .page-hero-title {
            font-size: 3.5rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .page-hero-subtitle {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        /* Abstract shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 0;
            opacity: 0.5;
        }
        .shape-1 { width: 300px; height: 300px; background: rgba(9, 132, 227, 0.2); top: -100px; left: -100px; }
        .shape-2 { width: 400px; height: 400px; background: rgba(0, 210, 211, 0.15); bottom: -200px; right: -100px; }

        .tq-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: -4rem auto 4rem;
            width: 100%;
            position: relative;
            z-index: 2;
            max-width: 1000px;
            padding: 0 var(--section-padding);
        }
        .tq-stat-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .tq-stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 1);
        }
        .tq-stat-icon {
            font-size: 3rem;
            color: var(--neon-blue);
            margin-bottom: 1rem;
        }
        .tq-stat-value {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--sapphire-blue);
            margin-bottom: 0.5rem;
        }
        .tq-stat-label {
            font-size: 1rem;
            color: var(--text-secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .detail-section {
            padding: 2rem var(--section-padding) 6rem;
            margin: 0 auto;
            width: 100%;
        }

        .content-block {
            margin-bottom: 5rem;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
        }
        
        .section-header {
            font-size: 2.2rem;
            color: var(--sapphire-blue);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Split Layout */
        .split-layout {
            display: flex;
            align-items: stretch;
            gap: 4rem;
        }
        .split-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .split-content p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        .split-image {
            flex: 1;
            position: relative;
        }
        .split-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .info-box {
            margin-top: 2rem;
            background: rgba(9, 132, 227, 0.03);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid var(--sapphire-blue);
        }
        .info-box h4 {
            font-size: 1.2rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .external-link-btn {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 2rem;
            background: rgba(9, 132, 227, 0.1);
            color: var(--sapphire-blue);
            font-weight: 700;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(9, 132, 227, 0.2);
            margin-top: 1rem;
        }
        .external-link-btn:hover {
            background: var(--sapphire-blue);
            color: white;
            transform: translateX(5px);
        }

        /* 10 Topic Grid */
        .topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .topic-card {
            background: white;
            border: 1px solid rgba(0,0,0,0.05);
            padding: 2rem 1.5rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            height: 100%;
        }
        .topic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--sapphire-blue);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }
        .topic-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(9, 132, 227, 0.1);
            border-color: rgba(9, 132, 227, 0.2);
        }
        .topic-card:hover::before {
            transform: scaleX(1);
        }
        .topic-icon {
            font-size: 2rem;
            color: var(--neon-blue);
            margin-bottom: 0.8rem;
            transition: transform 0.3s ease;
        }
        .topic-card:hover .topic-icon {
            transform: scale(1.1);
        }
        .topic-title {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 1.15rem;
        }
        .topic-sublist {
            margin-top: 1.2rem;
            text-align: left;
            width: 100%;
            font-size: 0.95rem;
            color: var(--text-secondary);
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 1.2rem;
        }
        .topic-sublist ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .topic-sublist li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.2rem;
            line-height: 1.4;
        }
        .topic-sublist li::before {
            content: '-';
            position: absolute;
            left: 0;
            color: var(--neon-blue);
            font-weight: bold;
        }

        /* Timeline CSS */
        .timeline-container {
            margin-top: 3rem;
            position: relative;
            padding-left: 3rem;
        }
        .timeline-container::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: rgba(9, 132, 227, 0.1);
            border-radius: 4px;
        }
        .timeline-step {
            position: relative;
            margin-bottom: 3rem;
        }
        .timeline-step:last-child {
            margin-bottom: 0;
        }
        .timeline-marker {
            position: absolute;
            left: -3rem;
            top: 0;
            width: 2.5rem;
            height: 2.5rem;
            background: var(--sapphire-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            transform: translateX(-50%);
            box-shadow: 0 0 0 5px white, 0 5px 15px rgba(9, 132, 227, 0.3);
            z-index: 2;
        }
        .timeline-content {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0,0,0,0.05);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }
        .timeline-content:hover {
            box-shadow: 0 15px 30px rgba(9, 132, 227, 0.08);
            border-color: rgba(9, 132, 227, 0.2);
        }
        .timeline-content h4 {
            color: var(--sapphire-blue);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        .timeline-content p {
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        .cta-banner {
            background: linear-gradient(135deg, var(--sapphire-blue), #075b9e);
            border-radius: 20px;
            padding: 4rem 2rem;
            text-align: center;
            color: white;
            margin: 2rem auto;
            width: 100%;
            box-shadow: 0 20px 40px rgba(9, 132, 227, 0.3);
        }
        .cta-banner h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        .cta-banner p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-inline: auto;
        }
        .cta-banner .cta-btn {
            background: white;
            color: var(--sapphire-blue);
            border: none;
            padding: 1rem 3rem;
            font-size: 1.1rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
        }
        .cta-banner .cta-btn:hover {
            background: var(--neon-blue);
            color: white;
            box-shadow: 0 10px 20px rgba(0, 210, 211, 0.4);
        }

        /* Kazanımlar Grid */
        .kazanim-container {
            display: flex;
            gap: 2rem;
            margin-top: 4rem;
        }
        .kazanim-col {
            flex: 1;
            background: linear-gradient(135deg, rgba(9, 132, 227, 0.03), rgba(0, 210, 211, 0.05));
            border: 2px solid rgba(9, 132, 227, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(9, 132, 227, 0.05);
        }
        .kazanim-col-title {
            text-align: center;
            font-size: 1.5rem;
            color: var(--sapphire-blue);
            font-weight: 800;
            margin-bottom: 2rem;
            border-bottom: 2px dashed rgba(9, 132, 227, 0.2);
            padding-bottom: 1rem;
        }
        .kazanim-list {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .kazanim-item {
            background: white;
            color: var(--text-primary);
            font-weight: 700;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border-left: 4px solid var(--neon-blue);
            transition: all 0.3s ease;
        }
        .kazanim-item:hover {
            transform: translateX(10px);
            border-left-color: white;
            box-shadow: 0 8px 20px rgba(9, 132, 227, 0.1);
            background: var(--sapphire-blue);
            color: white;
        }

        @media (max-width: 968px) {
            .kazanim-container {
                flex-direction: column;
            }
            .split-layout {
                flex-direction: column;
                gap: 2rem;
            }
            .split-image {
                min-height: 300px;
            }
            .timeline-container {
                padding-left: 2rem;
            }
            .timeline-marker {
                left: -2rem;
                width: 2rem;
                height: 2rem;
                font-size: 1rem;
            }
        }
    

.safir-inline-31d92e {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

.safir-inline-e49205 {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.safir-inline-bc0e39 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: normal;
    margin-left: 0.5rem;
}

.safir-inline-bbee7b {
    list-style-type: none;
    padding-left: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 1rem;
}

.safir-inline-070fa1 {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.8rem;
}

.safir-inline-3338ca {
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-weight: bold;
}

.safir-inline-abfa35 {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.nav-logo-img { height: 70px; width: auto; display: block; }
.mobile-menu-logo-img { height: 50px; }
.mobile-dropdown-icon { pointer-events: none; }
.contact-link-text { color: inherit; text-decoration: none; }
.footer-logo-img { height: 85px; margin-bottom: 1.5rem; display: block; }
