/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* Yankıtr Theme Variables */
:root {
    /* Yankıtr Colors */
    --yankitr-primary: #047857;
    --yankitr-primary-light: #059669;
    --yankitr-primary-dark: #065f46;
    --yankitr-slate-50: #f8fafc;
    --yankitr-slate-100: #f1f5f9;
    --yankitr-slate-200: #e2e8f0;
    --yankitr-slate-300: #cbd5e1;
    --yankitr-slate-400: #94a3b8;
    --yankitr-slate-500: #64748b;
    --yankitr-slate-600: #475569;
    --yankitr-slate-700: #334155;
    --yankitr-slate-800: #1e293b;
    --yankitr-slate-900: #0f172a;
    --yankitr-green-400: #4ade80;
    --yankitr-green-500: #22c55e;
    --yankitr-green-600: #16a34a;
    --yankitr-green-700: #15803d;
    --yankitr-amber-50: #fffbeb;
    --yankitr-amber-600: #d97706;
    --yankitr-orange-50: #fff7ed;
    --yankitr-rose-50: #fff1f2;
    --yankitr-stone-700: #44403c;
    --yankitr-stone-800: #292524;
    --yankitr-stone-900: #1c1917;
    
    /* Typography - CyGrotesk Font Family like Yankıtr */
    --yankitr-font-family: 'CyGrotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles - Yankıtr Theme */
body.yankitr-theme {
    background: white;
    color: var(--yankitr-slate-900);
    font-family: var(--yankitr-font-family);
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    font-optical-sizing: auto;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 80px; /* Header yüksekliğine göre ayarlandı */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Discount Banner */
.discount-banner {
    background: linear-gradient(to right, var(--yankitr-stone-900), var(--yankitr-stone-800), var(--yankitr-green-700));
    color: white;
    padding: 0.75rem 1rem;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    overflow: hidden;
    font-family: var(--yankitr-font-family);
    height: 60px;
    display: flex;
    align-items: center;
}

.banner-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(68, 64, 60, 0.2), rgba(41, 37, 36, 0.2), rgba(21, 128, 61, 0.2));
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.banner-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .banner-flex {
        font-size: 1rem;
    }
}

.banner-badge {
    background: var(--yankitr-green-400);
    color: var(--yankitr-stone-900);
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    animation: bounce 1s ease-in-out infinite;
}

@media (min-width: 768px) {
    .banner-badge {
        font-size: 0.875rem;
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25%); }
}

.banner-text-hidden {
    display: none;
}

@media (min-width: 640px) {
    .banner-text-hidden {
        display: inline;
    }
}

.banner-discount {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 700;
    color: var(--yankitr-green-400);
}

.banner-limited {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-left: 0.5rem;
}

.banner-mobile-text {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

@media (min-width: 640px) {
    .banner-mobile-text {
        display: none;
    }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--yankitr-slate-200);
    transition: all var(--transition-fast);
    height: 80px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--yankitr-primary);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-fast);
}

.brand-link:hover {
    transform: translateY(-1px);
}

.brand-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    transition: transform var(--transition-fast);
    max-height: 140px; /* Header içinde kalması için */
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    background: linear-gradient(135deg, var(--yankitr-primary), var(--yankitr-primary-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--yankitr-slate-600);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--yankitr-primary);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--yankitr-slate-600);
    border-radius: 9999px;
    transition: all var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--yankitr-primary);
    color: white;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.btn-primary:hover {
    background: var(--yankitr-primary-dark);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transform: translateY(-1px);
}

/* Hero Section - Yankıtr Style */
.hero-yankitr {
    min-height: calc(100vh - 160px);
    background: linear-gradient(135deg, var(--yankitr-rose-50) 0%, var(--yankitr-orange-50) 50%, var(--yankitr-amber-50) 100%);
    overflow: hidden;
    position: relative;
    font-family: var(--yankitr-font-family);
    margin-top: 0; /* Body padding-top zaten var */
}

/* Decorative Dot Patterns */
.dot-pattern-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 600px;
    opacity: 0.15;
    pointer-events: none;
    background-image: radial-gradient(var(--yankitr-slate-800) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at 0% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 0% 50%, black 0%, transparent 70%);
}

@media (max-width: 1023px) {
    .dot-pattern-left {
        display: none;
    }
}

.dot-pattern-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 700px;
    opacity: 0.15;
    pointer-events: none;
    background-image: radial-gradient(var(--yankitr-slate-800) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at 100% 40%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 100% 40%, black 0%, transparent 80%);
}

@media (max-width: 1023px) {
    .dot-pattern-right {
        display: none;
    }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem 6rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .hero-container {
        padding: 5rem 1.5rem 6rem;
    }
}

/* Hero Heading Section */
.hero-heading-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 6rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-main-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    font-family: var(--yankitr-font-family);
}

@media (min-width: 640px) {
    .hero-main-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 768px) {
    .hero-main-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-main-title {
        font-size: 6rem;
    }
}

.gradient-text-yankitr {
    background: linear-gradient(135deg, var(--yankitr-slate-900), var(--yankitr-primary), var(--yankitr-amber-600));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--yankitr-slate-600);
    font-weight: 500;
    max-width: 32rem;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-family: var(--yankitr-font-family);
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        width: auto;
    }
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--yankitr-green-600);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    group: true;
}

.btn-hero-primary:hover {
    background: var(--yankitr-green-700);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-hero-primary svg {
    transition: transform var(--transition-normal);
}

.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: white;
    border: 1px solid var(--yankitr-slate-300);
    color: var(--yankitr-slate-700);
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.btn-hero-secondary:hover {
    background: var(--yankitr-slate-50);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-hero-secondary svg {
    transition: transform var(--transition-normal);
}

.btn-hero-secondary:hover svg {
    transform: translateX(4px);
}

/* Demo Section - Yankıtr Style */
.demo-section-yankitr {
    padding: 6rem 0;
    background: white;
}

/* Demo Section Inner - Hero İçindeki Bölüm */
.demo-section-inner {
    margin-top: 60px;
    position: relative;
}

.demo-section-inner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .demo-section-inner {
        margin-top: 40px;
    }
}

/* Demo Tabs */
.demo-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.tabs-container {
    display: inline-flex;
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.tab-button {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--yankitr-slate-600);
}

.tab-button.active {
    background: var(--yankitr-primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.tab-button:hover:not(.active) {
    color: var(--yankitr-slate-900);
}

/* Demo Container */
.demo-yankitr-container {
    max-width: 80rem;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.1s forwards;
    opacity: 0;
    transform: translateY(2rem);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.demo-yankitr-layout {
    display: flex;
    flex-direction: column;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 1.5rem;
    border: 1px solid var(--yankitr-slate-200);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .demo-yankitr-layout {
        flex-direction: row;
        height: 600px;
    }
}

/* Demo Sidebar */
.demo-sidebar {
    width: 100%;
    border-bottom: 1px solid var(--yankitr-slate-100);
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    background: white;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.demo-sidebar::-webkit-scrollbar {
    display: none;
}

@media (min-width: 1024px) {
    .demo-sidebar {
        width: 16rem;
        border-bottom: none;
        border-right: 1px solid var(--yankitr-slate-100);
        flex-direction: column;
        overflow-y: auto;
        background: transparent;
    }
}

.category-btn-yankitr {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    text-align: left;
    transition: all var(--transition-fast);
    border: none;
    background: white;
    cursor: pointer;
    flex-shrink: 0;
    color: var(--yankitr-slate-600);
    border: 1px solid transparent;
}

.category-btn-yankitr.active {
    background: var(--yankitr-slate-900);
    color: white;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    border-color: var(--yankitr-slate-900);
}

.category-btn-yankitr:hover:not(.active) {
    background: var(--yankitr-slate-50);
    border-color: var(--yankitr-slate-200);
}

.category-icon {
    flex-shrink: 0;
}

.category-name {
    font-weight: 700;
    font-size: 0.875rem;
    white-space: nowrap;
}

.category-btn-yankitr.active .category-icon,
.category-btn-yankitr.active .category-name {
    color: white;
}

/* Demo Main Content */
.demo-main-content {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(248, 250, 252, 0.5);
}

.demo-text-area {
    flex: 1;
    padding: 1rem;
}

@media (min-width: 640px) {
    .demo-text-area {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .demo-text-area {
        padding: 2rem;
    }
}

.demo-textarea-yankitr {
    width: 100%;
    height: 8rem;
    background: transparent;
    resize: none;
    border: none;
    outline: none;
    color: var(--yankitr-slate-800);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    font-family: var(--yankitr-font-family);
}

@media (min-width: 640px) {
    .demo-textarea-yankitr {
        height: 100%;
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .demo-textarea-yankitr {
        font-size: 1.5rem;
    }
}

.demo-textarea-yankitr::placeholder {
    color: var(--yankitr-slate-300);
}

/* Demo Control Bar */
.demo-control-bar {
    padding: 0.75rem;
    border-top: 1px solid var(--yankitr-slate-100);
    background: white;
}

@media (min-width: 640px) {
    .demo-control-bar {
        padding: 1rem;
    }
}

@media (min-width: 1024px) {
    .demo-control-bar {
        padding: 1.5rem;
    }
}

/* Mobile Controls */
.mobile-controls {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .mobile-controls {
        display: none;
    }
}

.mobile-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-indicator > span {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yankitr-slate-100);
    color: var(--yankitr-slate-500);
}

.category-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--yankitr-slate-900);
    margin: 0;
}

.category-subtitle {
    font-size: 0.75rem;
    color: var(--yankitr-slate-500);
    margin: 0;
}

.play-btn-yankitr-mobile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--yankitr-primary);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.play-btn-yankitr-mobile:hover {
    background: var(--yankitr-primary-dark);
    transform: translateY(-1px);
}

.btn-text {
    font-size: 0.875rem;
}

/* Desktop Controls */
.desktop-controls {
    display: none;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .desktop-controls {
        display: flex;
    }
}

.desktop-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yankitr-slate-100);
    color: var(--yankitr-slate-500);
}

.desktop-category {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--yankitr-slate-900);
    margin: 0;
}

.desktop-subtitle {
    font-size: 0.75rem;
    color: var(--yankitr-slate-500);
    margin: 0;
}

.play-btn-yankitr-desktop {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--yankitr-primary);
    color: white;
    border-radius: 0.75rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 10px 15px -3px rgba(4, 120, 87, 0.2);
}

@media (min-width: 1024px) {
    .play-btn-yankitr-desktop {
        padding: 1rem 2rem;
        border-radius: 1rem;
    }
}

.play-btn-yankitr-desktop:hover {
    background: var(--yankitr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(4, 120, 87, 0.3);
}

.play-btn-yankitr-desktop:active {
    transform: translateY(0);
}

.btn-text-desktop {
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .btn-text-desktop {
        font-size: 1rem;
    }
}

/* Icon States */
.play-icon,
.pause-icon,
.loading-icon {
    transition: opacity var(--transition-fast);
}

.loading-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hidden {
    display: none !important;
}

/* Demo Attribution */
.demo-attribution {
    margin-top: 1.5rem;
    text-align: center;
}

/* Contact Page Styles - Yankıtr Style */
.contact-hero {
    min-height: auto;
    padding: 120px 0 80px;
}

.contact-content {
    margin-top: 60px;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Main Contact Card */
.contact-main-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--yankitr-slate-200);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--yankitr-slate-200);
}

.contact-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--yankitr-primary), var(--yankitr-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yankitr-slate-900);
    margin: 0;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--yankitr-slate-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.yankitr-link {
    color: var(--yankitr-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.yankitr-link:hover {
    color: var(--yankitr-primary-dark);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: var(--yankitr-slate-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yankitr-primary);
    flex-shrink: 0;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-text strong {
    font-weight: 600;
    color: var(--yankitr-slate-900);
    font-size: 0.875rem;
}

.contact-info-text span {
    color: var(--yankitr-slate-600);
    font-size: 0.875rem;
}

/* Side Contact Card */
.contact-side-card {
    background: var(--yankitr-slate-50);
    border-radius: 1rem;
    padding: 1.5rem;
    height: fit-content;
}

.contact-side-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--yankitr-slate-900);
    margin: 0 0 1rem 0;
}

.contact-side-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-side-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: var(--yankitr-slate-700);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    font-size: 0.875rem;
}

.contact-side-link:hover {
    background: white;
    color: var(--yankitr-primary);
    transform: translateX(4px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-side-link svg {
    flex-shrink: 0;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--yankitr-primary), var(--yankitr-primary-light));
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.contact-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

@media (min-width: 640px) {
    .contact-cta-title {
        font-size: 2.25rem;
    }
}

.contact-cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0 0 2rem 0;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.contact-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.contact-cta .btn-hero-primary {
    background: white;
    color: var(--yankitr-primary);
}

.contact-cta .btn-hero-primary:hover {
    background: var(--yankitr-slate-100);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.contact-cta .btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-cta .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .contact-main-card {
        padding: 1.5rem;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta-title {
        font-size: 1.5rem;
    }
}

/* About Page Styles - Yankıtr Style */
.about-hero {
    min-height: auto;
    padding: 120px 0 80px;
}

.about-content {
    margin-top: 60px;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .about-cards-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Main About Card */
.about-main-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--yankitr-slate-200);
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--yankitr-slate-200);
}

.about-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--yankitr-primary), var(--yankitr-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yankitr-slate-900);
    margin: 0;
}

.about-description {
    font-size: 1.125rem;
    color: var(--yankitr-slate-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-mission-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.mission-point-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: var(--yankitr-slate-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yankitr-primary);
    flex-shrink: 0;
}

.mission-point-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mission-point-text strong {
    font-weight: 600;
    color: var(--yankitr-slate-900);
    font-size: 0.875rem;
}

.mission-point-text span {
    color: var(--yankitr-slate-600);
    font-size: 0.875rem;
}

/* Side About Card */
.about-side-card {
    background: var(--yankitr-slate-50);
    border-radius: 1rem;
    padding: 1.5rem;
    height: fit-content;
}

.about-side-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--yankitr-slate-900);
    margin: 0 0 1rem 0;
}

.about-tech-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: white;
    transition: all var(--transition-fast);
}

.tech-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tech-feature-icon {
    font-size: 1.25rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.tech-feature-text strong {
    font-weight: 600;
    color: var(--yankitr-slate-900);
    font-size: 0.875rem;
}

.tech-feature-text span {
    color: var(--yankitr-slate-600);
    font-size: 0.75rem;
}

/* About Story */
.about-story {
    background: var(--yankitr-slate-50);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-story-content {
        grid-template-columns: 2fr 1fr;
    }
}

.about-story-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--yankitr-slate-900);
    margin: 0 0 1.5rem 0;
}

.about-story-description {
    font-size: 1.125rem;
    color: var(--yankitr-slate-600);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.about-story-description:last-child {
    margin-bottom: 0;
}

.about-story-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .about-story-visual {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (min-width: 768px) {
    .about-story-visual {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.story-visual-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-fast);
}

.story-visual-item:hover {
    transform: translateY(-4px);
}

.story-stat {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--yankitr-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.story-stat-label {
    font-size: 0.875rem;
    color: var(--yankitr-slate-600);
    font-weight: 500;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--yankitr-primary), var(--yankitr-primary-light));
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.about-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

@media (min-width: 640px) {
    .about-cta-title {
        font-size: 2.25rem;
    }
}

.about-cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0 0 2rem 0;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.about-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .about-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.about-cta .btn-hero-primary {
    background: white;
    color: var(--yankitr-primary);
}

.about-cta .btn-hero-primary:hover {
    background: var(--yankitr-slate-100);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.about-cta .btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-cta .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .about-main-card {
        padding: 1.5rem;
    }
    
    .about-story {
        padding: 2rem 1.5rem;
    }
    
    .about-cta {
        padding: 2rem 1.5rem;
    }
    
    .about-cta-title {
        font-size: 1.5rem;
    }
    
    .about-story-title {
        font-size: 1.5rem;
    }
}

.attribution-text {
    font-size: 0.875rem;
    color: var(--yankitr-slate-500);
    margin: 0;
}

.attribution-link {
    color: var(--yankitr-primary);
    text-decoration: none;
    font-weight: 500;
}

.attribution-link:hover {
    text-decoration: underline;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--yankitr-slate-50);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--yankitr-slate-900);
}

.section-description {
    font-size: 1.125rem;
    color: var(--yankitr-slate-600);
    max-width: 37.5rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: all var(--transition-normal);
    border: 1px solid var(--yankitr-slate-100);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.feature-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.feature-title {
    margin-bottom: 0.75rem;
    color: var(--yankitr-slate-900);
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-description {
    color: var(--yankitr-slate-600);
    line-height: 1.7;
    margin: 0;
}

.feature-link {
    color: var(--yankitr-primary);
    text-decoration: none;
    font-weight: 500;
}

.feature-link:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--yankitr-primary), var(--yankitr-primary-light));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 50rem;
    margin: 0 auto;
}

.cta-title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: clamp(1.875rem, 4vw, 2.25rem);
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-section .btn-primary {
    background: white;
    color: var(--yankitr-primary);
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.cta-section .btn-primary:hover {
    background: var(--yankitr-slate-50);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--yankitr-slate-900);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-subtitle {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-copyright a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid var(--yankitr-slate-200);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 1rem;
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    }
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Print Styles */
@media print {
    .header,
    .nav-toggle,
    .cta-section {
        display: none;
    }
    
    .hero-yankitr {
        padding-top: 2rem;
        margin-top: 0;
    }
    
    * {
        box-shadow: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid var(--yankitr-slate-900);
    }
    
    .btn-hero-secondary {
        border: 2px solid var(--yankitr-slate-500);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* FAQ Page Styles - Yankıtr Style */
.breadcrumb {
    background: var(--yankitr-slate-50);
    padding: 1rem 0;
    border-bottom: 1px solid var(--yankitr-slate-200);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--yankitr-slate-400);
}

.breadcrumb-list a {
    color: var(--yankitr-primary);
    text-decoration: none;
    font-size: 0.875rem;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.breadcrumb-list li:last-child {
    color: var(--yankitr-slate-600);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* FAQ Main Content */
.faq-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-category {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--yankitr-slate-200);
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yankitr-slate-900);
    margin: 0 0 2rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--yankitr-slate-200);
}

.faq-item {
    border-bottom: 1px solid var(--yankitr-slate-200);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--yankitr-primary);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: var(--yankitr-slate-900);
    transition: color var(--transition-fast);
}

.faq-item.active .faq-question h3 {
    color: var(--yankitr-primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--yankitr-primary);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 0;
}

.faq-answer p {
    color: var(--yankitr-slate-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    color: var(--yankitr-slate-600);
    line-height: 1.6;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer a {
    color: var(--yankitr-primary);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* FAQ Sidebar */
.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-sidebar-card {
    background: var(--yankitr-slate-50);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--yankitr-slate-200);
}

.faq-sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--yankitr-slate-900);
    margin: 0 0 1rem 0;
}

.faq-sidebar-card p {
    color: var(--yankitr-slate-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.faq-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.faq-feature-list li {
    color: var(--yankitr-slate-600);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* FAQ Buttons */
.btn-faq-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--yankitr-primary);
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    width: 100%;
}

.btn-faq-primary:hover {
    background: var(--yankitr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}

.btn-faq-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--yankitr-primary);
    text-decoration: none;
    font-weight: 500;
    border: 1px solid var(--yankitr-primary);
    border-radius: 0.5rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    font-size: 0.875rem;
    width: 100%;
}

.btn-faq-secondary:hover {
    background: var(--yankitr-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}

/* FAQ CTA */
.faq-cta {
    background: linear-gradient(135deg, var(--yankitr-primary), var(--yankitr-primary-light));
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.faq-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

@media (min-width: 640px) {
    .faq-cta-content h2 {
        font-size: 2.5rem;
    }
}

.faq-cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0 0 2rem 0;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.faq-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .faq-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.faq-cta .btn-hero-primary {
    background: white;
    color: var(--yankitr-primary);
}

.faq-cta .btn-hero-primary:hover {
    background: var(--yankitr-slate-100);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.faq-cta .btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-cta .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--yankitr-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .faq-category {
        padding: 1.5rem;
    }
    
    .faq-sidebar-card {
        padding: 1.5rem;
    }
    
    .faq-cta {
        padding: 3rem 0;
    }
    
    .faq-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
}

@media (max-width: 640px) {
    .breadcrumb {
        padding: 0.75rem 0;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    .faq-category-title {
        font-size: 1.25rem;
    }
}