footer.has-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Siyah cam efekti azaltıldı */
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { transform: translate(-50%, 100px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes slideDown {
    from { transform: translate(-50%, 0); opacity: 1; }
    to { transform: translate(-50%, 100px); opacity: 0; }
}

.cookie-content { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 20px; 
}

.cookie-text-group {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.cookie-icon { font-size: 2rem; animation: float-cookie 3s ease-in-out infinite; }
@keyframes float-cookie { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.cookie-title { font-size: 1rem; font-weight: 700; color: #1c1c1e; margin-bottom: 2px; }
.cookie-text { font-size: 0.9rem; color: #3a3a3c; margin-bottom: 0; line-height: 1.4; }

.cookie-buttons { display: flex; gap: 10px; align-items: center; }

.btn-cookie-accept {
    background: #007AFF;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
    white-space: nowrap;
}
.btn-cookie-accept:hover { transform: scale(1.02); background: #0062cc; }

.btn-cookie-decline {
    background: rgba(0,0,0,0.05);
    color: #8e8e93;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-cookie-decline:hover { background: rgba(0,0,0,0.1); color: #1c1c1e; }

.btn-cookie-info {
    background: transparent;
    color: #007AFF;
    border: 1px solid rgba(0, 122, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-cookie-info:hover { background: rgba(0, 122, 255, 0.05); }

@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-text-group { flex-direction: column; text-align: center; }
    .cookie-buttons { width: 100%; justify-content: center; flex-wrap: wrap; }
    .btn-cookie-accept, .btn-cookie-decline, .btn-cookie-info { flex: 1; }
}

@media (max-width: 991px) {
    #header .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(0,0,0,0.03);
        border-radius: 12px;
        border: none;
        cursor: pointer;
    }
    #header .logo img { max-height: 32px !important; }
    #header .creative-studio-text { font-size: 10px !important; }
    .desktop-header-widgets { display: none !important; }
    
    .header-content { display: flex !important; justify-content: space-between !important; align-items: center !important; }
    .logo { order: 1; }
    .menu-toggle { order: 3; }
    
    .header-clock { 
        display: flex !important; 
        order: 2; 
        background: rgba(0,0,0,0.03); 
        padding: 6px 12px; 
        border-radius: 12px; 
        align-items: center; 
        gap: 8px;
        margin: 0 !important;
    }
    
    .header-clock #clockTime { font-size: 12px; font-weight: 700; color: #1c1c1e; }
    .header-clock .visitor-stats { display: flex !important; gap: 6px; margin: 0; padding: 0; border: none; }
    .header-clock .visitor-stat-item:last-child { display: none; }
    .header-clock .status-wrapper { display: none; }
    .header-clock .visitor-stat-item i { font-size: 10px; }
    .header-clock .stat-value { font-size: 11px; font-weight: 600; }

    .visitor-stats-wrapper { position: relative; }
    .stats-popup { 
        position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(10px);
        background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        border-radius: 15px; padding: 12px 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: 1px solid rgba(0,0,0,0.05); z-index: 100; min-width: 160px; visibility: hidden; opacity: 0; transition: all 0.3s ease;
    }
    .visitor-stats-wrapper.active .stats-popup { visibility: visible; opacity: 1; transform: translateX(-50%) translateY(0); }
    .mobile-only-header .visitor-stats-wrapper { cursor: pointer; }
    .stats-content { display: flex; flex-direction: column; gap: 6px; }
    .stats-content strong { font-size: 10px; color: #8e8e93; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
    .stats-content span { font-size: 13px; font-weight: 600; color: #1c1c1e; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
    .stats-content i { width: 16px; text-align: center; }
    #visitorStatsWrapper .visitor-stats { pointer-events: none; }

    #nav {
        position: fixed !important;
        top: 70px !important;
        right: -100% !important;
        width: 80% !important;
        max-width: 300px !important;
        height: calc(100vh - 70px) !important;
        background: #ffffff !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        z-index: 9999 !important;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 20px !important;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05) !important;
        overflow-y: auto !important;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    #nav.active { right: 0; }

    .mobile-close-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: rgba(0,0,0,0.05);
        border-radius: 50%;
        align-self: flex-end;
        margin-bottom: 20px;
        cursor: pointer;
        border: none;
        color: #1c1c1e;
    }

    #nav ul { display: flex !important; flex-direction: column !important; gap: 10px !important; padding: 0 !important; margin: 0 !important; list-style: none !important; border: none !important; }
    #nav ul li { width: 100% !important; margin: 0 !important; float: none !important; display: block !important; }
    #nav .menu-link { display: flex !important; align-items: center !important; padding: 12px 15px !important; background: rgba(0,0,0,0.03) !important; border-radius: 15px !important; color: #1c1c1e !important; text-decoration: none !important; border: none !important; width: 100% !important; box-sizing: border-box !important; }
    #nav .menu-text { margin-left: 12px !important; font-size: 0.95rem !important; font-weight: 600 !important; color: #1c1c1e !important; }
    #nav .menu-icon { width: 32px !important; height: 32px !important; display: flex !important; align-items: center !important; justify-content: center !important; background: #fff !important; border-radius: 10px !important; box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important; flex-shrink: 0 !important; margin: 0 !important; }
    
    #nav .menu-icon i { font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; font-style: normal !important; display: inline-block !important; color: #1c1c1e !important; }
    #nav .ios-blue i { color: #007AFF !important; }
    #nav .ios-orange i { color: #FF9500 !important; }
    #nav .ios-indigo i { color: #5856D6 !important; }
    #nav .ios-purple i { color: #AF52DE !important; }
    #nav .ios-green i { color: #34C759 !important; }
    #nav .ios-red i { color: #FF3B30 !important; }

    #nav li.dropdown .dropdown-menu { display: none !important; list-style: none !important; padding: 5px 0 5px 20px !important; background: transparent !important; border: none !important; box-shadow: none !important; position: static !important; }
    #nav li.dropdown.open .dropdown-menu { display: block !important; }
    #nav .dropdown-menu li a { padding: 10px 0 !important; color: #3a3a3c !important; display: block !important; text-decoration: none !important; font-size: 0.9rem !important; border: none !important; }
    #nav li.dropdown > a .fa-chevron-down { margin-left: auto !important; transition: transform 0.3s !important; }
    #nav li.dropdown.open > a .fa-chevron-down { transform: rotate(180deg); }

    #nav .mobile-social-links {
        display: flex !important;
        justify-content: center;
        gap: 15px;
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    #nav .mobile-social-links .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0,0,0,0.05);
        color: #1c1c1e;
        font-size: 1.1rem;
        transition: all 0.2s ease;
    }
    #nav .mobile-social-links .social-link:hover {
        background: rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }
    
    #nav .mobile-menu-signature { display: block !important; }
}

/* Desktop View - Hide Mobile Elements */
@media (min-width: 992px) {
    .mobile-only-header { display: none !important; }

    .mobile-close-btn, 
    .mobile-social-links, 
    .mobile-menu-signature,
    #visitorStatsWrapper {
        display: none !important; 
    }

    #header .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    #header .logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .header-main-layout {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .header-content-column {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    #header .header-content {
        padding: 10px 0 !important;
    }
}

@media (max-width: 991px) {
    .header-main-layout {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        flex-wrap: nowrap !important;
    }
    .header-content-column {
        flex: 1 !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
    }
}

@media (min-width: 992px) {
    #nav {
        display: flex;
        align-items: center;
        flex-grow: 1;
        justify-content: center;
    }

    .desktop-header-widgets {
        display: flex !important;
        align-items: center;
        gap: 15px;
        margin-left: auto;
    }

    .desktop-header-widgets .header-clock {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(0,0,0,0.03);
        padding: 6px 14px;
        border-radius: 12px;
        border: 1px solid rgba(0,0,0,0.02);
    }

    .desktop-header-widgets #clockTime {
        font-size: 13px;
        font-weight: 700;
        color: #1c1c1e;
    }

    .desktop-social-links {
        display: flex !important;
        align-items: center;
        gap: 8px;
        padding-left: 15px;
        border-left: 1px solid rgba(0,0,0,0.1);
    }

    .desktop-social-links .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(0,0,0,0.04);
        color: #1c1c1e;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .desktop-social-links .social-link:hover {
        color: white;
        transform: translateY(-2px);
    }

    .desktop-social-links .social-link:hover:has(.fa-facebook-f) { background: #1877F2 !important; }
    .desktop-social-links .social-link:hover:has(.fa-twitter) { background: #1DA1F2 !important; }
    .desktop-social-links .social-link:hover:has(.fa-instagram) { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important; }
    .desktop-social-links .social-link:hover:has(.fa-linkedin-in) { background: #0A66C2 !important; }
    .desktop-social-links .social-link:hover:has(.fa-youtube) { background: #FF0000 !important; }

    #header.scrolled .desktop-social-links .social-link {
        color: #ffffff;
        background: rgba(255,255,255,0.15);
    }

    #header.scrolled .desktop-social-links-bottom {
        border-top-color: rgba(255, 255, 255, 0.1);
    }

    .dropdown-login-wrapper { position: relative; }
    .login-dropdown {
        position: absolute; top: calc(100% + 15px); right: 0; width: 300px;
        background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 24px; padding: 25px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); z-index: 1000; display: none;
        transform: translateY(10px); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .login-dropdown.active { display: block; animation: dropdownFadeIn 0.3s forwards; }
    @keyframes dropdownFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
    .login-header h3 { margin: 0 0 5px 0; font-size: 1.25rem; font-weight: 800; color: #1c1c1e; }
    .login-header p { margin: 0 0 20px 0; font-size: 0.85rem; color: #3a3a3c; }
    .login-dropdown .ios-input {
        width: 100%; padding: 12px 16px; background: rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.02); border-radius: 12px; margin-bottom: 12px;
        font-size: 0.95rem; outline: none; transition: all 0.2s; box-sizing: border-box;
        color: #1c1c1e;
    }
    .login-dropdown .ios-input:focus { background: #fff; border-color: #007AFF; box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1); }
    .btn-ios-login {
        width: 100%; padding: 12px; background: linear-gradient(135deg, #007AFF, #5AC8FA);
        color: white; border: none; border-radius: 12px; font-weight: 700; font-size: 1rem;
        cursor: pointer; transition: all 0.3s; box-shadow: 0 8px 20px rgba(0, 122, 255, 0.25);
    }
    .btn-ios-login:hover { transform: translateY(-1px); box-shadow: 0 10px 25px rgba(0, 122, 255, 0.35); }

    .online-dot {
        width: 8px;
        height: 8px;
        background: #34C759;
        border-radius: 50%;
        display: inline-block;
        box-shadow: 0 0 0 rgba(52, 199, 89, 0.4);
        animation: pulse-green 2s infinite;
    }
}

#statusWrapperDesktop, #visitorStatsWrapperDesktop, #statusWrapper, #visitorStatsWrapper {
    cursor: pointer;
}

#header.scrolled #clockTime {
    color: #ffffff !important;
}

.desktop-social-links-bottom { display: none; }

@media (min-width: 992px) {
    .desktop-social-links-bottom {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        width: 100%;
        padding: 10px 0;
        margin-top: 10px;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .nav-cat-decoration {
        position: absolute;
        right: 0;
        top: 0;
        height: 45px;
        width: auto;
        transform: translateY(-100%);
        pointer-events: none;
        z-index: 10;
    }

    .desktop-social-links-bottom .desktop-social-links {
        display: flex;
        gap: 15px;
        padding-left: 0;
        border-left: none;
    }
    .desktop-social-links-bottom .desktop-header-widgets {
        margin-left: 0;
    }
}

/* Screen Reader Only (SEO & Accessibility) */
.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;
}

/* ==========================================================================
   Tailwind CSS Utility Replacements (Performans Optimizasyonu)
   ========================================================================== */

/* Container */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
}

@media (min-width: 640px) {
    .container { max-width: 640px; }
}
@media (min-width: 768px) {
    .container { max-width: 768px; }
}
@media (min-width: 1024px) {
    .container { max-width: 1024px; }
}
@media (min-width: 1280px) {
    .container { max-width: 1280px; }
}
@media (min-width: 1536px) {
    .container { max-width: 1440px; }
}

/* Flexbox & Layout */
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.items-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.justify-start { justify-content: flex-start !important; }
.justify-end { justify-content: flex-end !important; }
.justify-between { justify-content: space-between !important; }
.relative { position: relative !important; }
.absolute { position: absolute !important; }
.z-10 { z-index: 10 !important; }
.hidden { display: none !important; }
.overflow-hidden { overflow: hidden !important; }
.select-none { user-select: none !important; -webkit-user-select: none !important; }
.inline-flex { display: inline-flex !important; align-items: center; }

/* Spacing & Gaps */
.gap-2 { gap: 0.5rem; } /* 8px */
.gap-3 { gap: 0.75rem; } /* 12px */
.gap-4 { gap: 1rem; } /* 16px */
.gap-8 { gap: 2rem; } /* 32px */
.gap-10 { gap: 2.5rem; } /* 40px */

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.me-2 { margin-inline-end: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; }

.p-1 { padding: 0.25rem; }
.p-3 { padding: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-0 { padding-top: 0; }
.-bottom-3 { bottom: -0.75rem; }
.-right-3 { right: -0.75rem; }

/* space-y-4 class replacement */
.space-y-4 > * + * {
    margin-top: 1rem;
}

/* Widths & Heights */
.w-full { width: 100%; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }
.w-auto { width: auto; }
.w-64 { width: 16rem; }
.h-64 { height: 16rem; } /* Profil görseli için kare yükseklik - eklendi */
.h-full { height: 100%; }
.h-auto { height: auto; }
.max-w-full { max-width: 100%; }
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }
.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.img-height-home { max-height: 200px; }

/* Typography */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-xs-small { font-size: 10px; }
.tracking-widest-plus { letter-spacing: 0.3em; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-orange-500 { color: #f97316; }
.text-orange-600 { color: #ea580c; }
.text-gray-900 { color: #111827; }
.text-white { color: #ffffff; }

/* Borders & Shadows */
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }

/* Gradients
   CSS CSS değişkenleri (custom properties) kullanarak Tailwind'in
   çok-sınıf gradyan sistemini taklit ediyoruz.
   Örn: class="bg-gradient-to-br from-indigo-500 to-blue-600" */
.bg-white { background-color: #ffffff; }

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-from, #fff), var(--tw-gradient-to, #fff));
}
.bg-gradient-to-br {
    background-image: linear-gradient(135deg, var(--tw-gradient-from, #fff), var(--tw-gradient-to, #fff));
}

/* from-* renk değişkenleri */
.from-orange-400 { --tw-gradient-from: #fb923c; }
.from-orange-500 { --tw-gradient-from: #f97316; }
.from-indigo-500 { --tw-gradient-from: #6366f1; }
.from-cyan-400   { --tw-gradient-from: #22d3ee; }
.from-amber-500  { --tw-gradient-from: #f59e0b; }
.from-fuchsia-500 { --tw-gradient-from: #d946ef; }

/* to-* renk değişkenleri */
.to-blue-500    { --tw-gradient-to: #3b82f6; }
.to-blue-600    { --tw-gradient-to: #2563eb; }
.to-emerald-500 { --tw-gradient-to: #10b981; }
.to-orange-600  { --tw-gradient-to: #ea580c; }
.to-rose-500    { --tw-gradient-to: #f43f5e; }

/* Animations, Transitions & Hovers */
.transition {
    transition-property: color, background-color, border-color, opacity, box-shadow, transform, filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transform {
    /* transform utility - değer varlığı için gerekli */
    will-change: transform;
}
.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}

/* ========================== Responsive Rules ========================== */

/* Small Devices (sm: min-width: 640px) */
@media (min-width: 640px) {
    .sm\:justify-start { justify-content: flex-start; }
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}

/* Desktop Devices (lg: min-width: 992px) */
@media (min-width: 992px) {
    .lg\:flex { display: flex; }
    .lg\:flex-row { flex-direction: row; }
    .lg\:flex-1 { flex: 1 1 0%; }
    .lg\:justify-between { justify-content: space-between; }
    .lg\:justify-start { justify-content: flex-start; }
    .lg\:justify-end { justify-content: flex-end; }
    .lg\:w-1\/2 { width: 50%; }
    .lg\:w-1\/3 { width: 33.333333%; }
    .lg\:w-2\/3 { width: 66.666667%; }
    .lg\:w-3\/12 { width: 25%; }
    .img-height-home-lg { max-height: 260px; }
}

/* Extra Large Devices (xl: min-width: 1200px) */
@media (min-width: 1200px) {
    .xl\:w-4\/12 { width: 33.333333%; }
    .img-height-home-xl { max-height: 350px; }
}
