:root {
    --primary: #1a365d;
    --primary-dark: #132948;
    --primary-light: #2a4a7f;
    --secondary: #3182ce;
    --secondary-dark: #2c5282;
    --secondary-light: #4299e1;

    --black: #111111;
    --dark: #2d3748;
    --gray: #718096;
    --light-gray: #e2e8f0;
    --white: #ffffff;
    --off-white: #f8f9fa;

    --fs-hero: clamp(3.5rem, 6vw, 5rem);
    --fs-display: clamp(2.75rem, 4vw, 3.5rem);
    --fs-headline: clamp(2.25rem, 3vw, 2.75rem);
    --fs-title: clamp(1.75rem, 2.5vw, 2.25rem);
    --fs-large: clamp(1.25rem, 1.8vw, 1.5rem);
    --fs-body: clamp(1rem, 1.1vw, 1.125rem);
    --fs-small: clamp(0.875rem, 0.9vw, 0.95rem);

    --space-3xs: clamp(0.25rem, 0.4vw, 0.35rem);
    --space-2xs: clamp(0.5rem, 0.7vw, 0.65rem);
    --space-xs: clamp(0.75rem, 0.9vw, 0.85rem);
    --space-s: clamp(1rem, 1.1vw, 1.25rem);
    --space-m: clamp(1.5rem, 2vw, 2rem);
    --space-l: clamp(2rem, 3vw, 3rem);
    --space-xl: clamp(3rem, 4vw, 4rem);
    --space-2xl: clamp(4rem, 5vw, 5rem);
    --space-3xl: clamp(5rem, 7vw, 7rem);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--dark);
    line-height: 1.5;
    background-color: var(--white);
    overflow-x: hidden;
    padding: 0 !important;
}

@media screen and (max-width: 387px) {
  .logo {
    max-width: 280px; /* Ekrana sığacak maksimum genişlik */
    width: 80%;
    margin: 0 auto;
  }
}

/* 388px ve üzerinde normal boyut */
@media screen and (min-width: 388px) {
  .logo {
    max-width: 350px; /* İstediğiniz maksimum boyut */
    width: auto;
  }
}

/* Çok küçük ekranlar için ek güvenlik */
@media screen and (max-width: 320px) {
  .logo {
    max-width: 250px;
    width: 75%;
  }
}
.tab-bar {
            overflow: hidden;
            background-color: #1a365d;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            min-height: 50px;
        }

        .tab-bar-button-left {
            background-color: inherit;
            border: none;
            outline: none;
            cursor: pointer;
            padding: 10px 12px;
            transition: 0.3s;
            font-size: 16px;
            color: white;
            flex-shrink: 0;
        }

        .tab-bar-button-right {
            background-color: inherit;
            border: none;
            outline: none;
            cursor: pointer;
            padding: 10px 12px;
            transition: 0.3s;
            font-size: 15px;
            color: white;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            white-space: nowrap;
        }

        .tab-bar-button-left a,
        .tab-bar-button-right a {
            color: white;
            text-decoration: none;
        }

        .tab-bar-button-left:hover,
        .tab-bar-button-right:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Tablet için */
        @media (max-width: 992px) {
            .tab-bar-button-right {
                font-size: 15px;
                gap: 10px;
            }
            
            .contact-item {
                font-size: 14px;
            }
        }

        /* Mobil için */
        @media (max-width: 768px) {
            .tab-bar {
                flex-direction: column;
                text-align: center;
                padding: 5px;
                min-height: auto;
            }

            .tab-bar-button-left {
                width: 100%;
                margin-bottom: 5px;
                font-size: 14px;
                padding: 8px 10px;
            }

            .tab-bar-button-right {
                width: 100%;
                justify-content: center;
                font-size: 12px;
                padding: 8px 10px;
                gap: 5px;
            }

            .contact-item {
                justify-content: center;
                font-size: 11px;
            }
        }

        /* Çok küçük ekranlar için */
        @media (max-width: 480px) {
            .tab-bar {
                padding: 3px;
            }

            .tab-bar-button-left {
                font-size: 12px;
                padding: 6px 8px;
                margin-bottom: 3px;
            }

            .tab-bar-button-right {
                font-size: 10px;
                padding: 6px 8px;
                gap: 3px;
            }

            .contact-item {
                font-size: 10px;
            }

            .contact-item img {
                height: 16px !important;
                margin: 0 2px !important;
            }
        }
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--black);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.25rem 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary);
    text-decoration: none;
}

.logo:hover {
    color: var(--primary);
}

.logo-accent {
    color: var(--secondary);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    position: relative;
    text-wrap: nowrap;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--off-white);
    overflow: hidden;
    padding-top: 5rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin: 2rem 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://nobilaw.com/assets/img/hero-background.jpg");
    z-index: 2;
    opacity: 0.2;
}

.hero-title {
    font-size: var(--fs-hero);
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: var(--fs-large);
    font-weight: 300;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26, 54, 93, 0.15);
}

.text-primary {
    color: var(--primary) !important;
}

.btn-outline {
    color: var(--primary);
    border-color: var(--primary);
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26, 54, 93, 0.15);
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: var(--fs-display);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: var(--fs-large);
    font-weight: 300;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 800px;
}

.section-tag {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(49, 130, 206, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: white;
}

.feature-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.case-study-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 380px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.case-study-card h4 {
    color: white;
}

.case-study-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.case-study-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
    transition: all 0.3s ease;
}

.case-study-card:hover .case-study-img {
    transform: scale(1.05);
}

.case-study-card:hover .case-study-overlay {
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9) 0%, rgba(26, 54, 93, 0) 100%);
}

.testimonial-section {
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(26, 54, 93, 0.1);
    position: absolute;
    top: -3rem;
    left: -1rem;
    line-height: 1;
}

.testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--light-gray);
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-position {
    font-size: 0.9rem;
    color: var(--gray);
}

.partners-section {
    background-color: white;
    padding: 5rem 0;
}

.partner-logo {
    height: 40px;
    opacity: 0.75;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.stats-section {
    background-color: var(--primary);
    color: white;
    padding: 5rem 0;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.insights-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.insights-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.insights-img-container {
    height: 220px;
    overflow: hidden;
}

.insights-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.insights-card:hover .insights-img {
    transform: scale(1.05);
}

.insights-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insights-date {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.insights-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.insights-link {
    margin-top: auto;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.insights-link:hover {
    color: var(--secondary);
}

.insights-link i {
    margin-left: 0.5rem;
    transition: all 0.2s ease;
}

.insights-link:hover i {
    transform: translateX(3px);
}

.technology-section {
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.tech-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(26, 54, 93, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(49, 130, 206, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.tech-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--primary);
}

.cta-section {
    background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.1) 0%, transparent 25%),
            radial-gradient(circle at 90% 85%, rgba(255, 255, 255, 0.1) 0%, transparent 25%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: var(--fs-headline);
    margin-bottom: 1.5rem;
    color: white;
}

.cta-subtitle {
    font-size: var(--fs-large);
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-cta {
    background-color: white;
    color: var(--primary);
    font-weight: 600;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-decoration: none;
}

.btn-cta:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 2rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
    display: inline-block;
    text-decoration: none;
}

.footer-logo:hover {
    color: white;
}

.footer-logo .logo-accent {
    color: var(--secondary-light);
}

.footer h5 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
    font-size: 0.9rem;
}


.page-hero {
    padding: 10rem 0 4rem;
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: var(--fs-display);
    margin-bottom: 1rem;
    color: var(--black);
    margin-top: 3rem;
}

.page-subtitle {
    font-size: var(--fs-large);
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.page-meta {
    color: var(--gray);
    font-size: var(--fs-small);
    margin-top: 1rem;
}

.page-date {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background-color: rgba(26, 54, 93, 0.1);
    color: var(--primary);
    font-weight: 500;
}

.legal-content {
    font-size: var(--fs-body);
    line-height: 1.7;
}

.legal-toc {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.legal-toc-list {
    margin: 0;
    padding-left: 1.25rem;
}

.legal-toc-list li {
    margin-bottom: 0.75rem;
}

.legal-toc-list a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.legal-toc-list a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.legal-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-section ul {
    margin-bottom: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    background-color: var(--light-gray);
    padding: 0.5rem;
    border-radius: 50px;
    position: relative;
}

.pricing-period {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    color: var(--gray);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.pricing-period.active {
    color: var(--primary);
}

.switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    transition: .4s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: var(--primary);
    transition: .4s;
}

input:checked + .slider:before {
    transform: translateX(28px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.discount-badge {
    position: absolute;
    right: -30px;
    top: -10px;
    background-color: var(--secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transform: rotate(15deg);
}

.pricing-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.15);
}

.pricing-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.pricing-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pricing-features i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.pricing-footer {
    margin-top: auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table th {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
}

.comparison-table th:first-child {
    text-align: left;
    border-top-left-radius: 8px;
}

.comparison-table th:last-child {
    border-top-right-radius: 8px;
}

.comparison-table .feature-column {
    width: 300px;
}

.comparison-table tr:hover {
    background-color: rgba(49, 130, 206, 0.05);
}

.comparison-table .feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--dark);
}

.resource-category-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--dark);
    display: block;
    border: 1px solid var(--light-gray);
}

.resource-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    color: var(--primary);
}

.resource-category-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(49, 130, 206, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.resource-category-card:hover .resource-category-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.resource-category-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.resource-category-card:hover .resource-category-title {
    color: var(--primary);
}

.blog-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-gray);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.blog-date {
    margin-right: 1rem;
}

.blog-author {
    position: relative;
    padding-left: 1rem;
}

.blog-author::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--gray);
}

.blog-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--dark);
    transition: all 0.2s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.blog-link {
    margin-top: auto;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.blog-link:hover {
    color: var(--secondary);
}

.blog-link i {
    margin-left: 0.5rem;
    transition: all 0.2s ease;
}

.blog-link:hover i {
    transform: translateX(3px);
}

.whitepaper-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    height: 100%;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.whitepaper-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.whitepaper-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.whitepaper-content {
    flex-grow: 1;
}

.whitepaper-date {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.whitepaper-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--dark);
    transition: all 0.2s ease;
}

.whitepaper-card:hover .whitepaper-title {
    color: var(--primary);
}

.whitepaper-excerpt {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.whitepaper-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.whitepaper-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.whitepaper-link:hover {
    color: var(--secondary);
}

.whitepaper-link i {
    margin-left: 0.5rem;
    transition: all 0.2s ease;
}

.whitepaper-link:hover i {
    transform: translateX(3px);
}

.webinar-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-gray);
}

.webinar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.webinar-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.webinar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.webinar-card:hover .webinar-img {
    transform: scale(1.05);
}

.webinar-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.webinar-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.webinar-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.webinar-type {
    color: var(--primary);
    font-weight: 600;
}

.webinar-type.upcoming {
    color: var(--secondary);
}

.webinar-date {
    color: var(--gray);
}

.webinar-title {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    color: var(--dark);
    transition: all 0.2s ease;
}

.webinar-card:hover .webinar-title {
    color: var(--primary);
}

.webinar-speakers {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--gray);
}

.webinar-speaker-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 0.75rem;
    border: 2px solid var(--light-gray);
}

.webinar-link {
    margin-top: auto;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.webinar-link:hover {
    color: var(--secondary);
}

.webinar-link i {
    margin-left: 0.5rem;
    transition: all 0.2s ease;
}

.webinar-link:hover i {
    transform: translateX(3px);
}

.webinar-link.register {
    color: var(--secondary);
}

.webinar-link.register:hover {
    color: var(--secondary-dark);
}

.newsletter-card {
    background: linear-gradient(120deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 12px;
    padding: 3rem;
    color: white;
}

.newsletter-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.newsletter-form .form-control {
    height: 54px;
    border-radius: 4px 0 0 4px;
    border: none;
    padding-left: 1.25rem;
}

.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

.newsletter-form .form-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.resource-detail-hero {
    padding: 8rem 0 3rem;
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.resource-breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.resource-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.resource-breadcrumb a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.resource-breadcrumb i {
    font-size: 0.75rem;
    color: var(--gray);
    margin: 0 0.5rem;
}

.resource-breadcrumb span {
    color: var(--gray);
}

.resource-detail-header {
    margin-bottom: 2rem;
}

.resource-type {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background-color: var(--primary);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.resource-title {
    font-size: var(--fs-headline);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.resource-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.resource-meta i {
    margin-right: 0.5rem;
}

.resource-content-section {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.resource-featured-img {
    margin-bottom: 2.5rem;
}

.resource-content {
    font-size: var(--fs-body);
    line-height: 1.7;
}

.resource-text p {
    margin-bottom: 1.5rem;
}

.resource-text h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.25rem;
    color: var(--primary);
}

.resource-text h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.resource-text .lead {
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 300;
}

.resource-text ul, .resource-text ol {
    margin-bottom: 1.5rem;
}

.resource-text li {
    margin-bottom: 0.5rem;
}

.resource-text blockquote {
    background-color: var(--off-white);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--dark);
}

.resource-text figure {
    margin: 2.5rem 0;
}

.resource-text figcaption {
    margin-top: 0.75rem;
    color: var(--gray);
}

.resource-tags {
    margin: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.tag-label {
    font-weight: 600;
    color: var(--dark);
}

.resource-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background-color: rgba(26, 54, 93, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.resource-tag:hover {
    background-color: var(--primary);
    color: white;
}

.resource-author-box {
    background-color: var(--off-white);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    margin-top: 3rem;
}

.author-img {
    margin-right: 1.5rem;
}

.author-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-info {
    flex-grow: 1;
}

.author-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.author-social {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
}

.author-social .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(26, 54, 93, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social .social-icon:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.resource-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.social-share {
    display: flex;
    gap: 0.75rem;
}

.share-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link:hover {
    transform: translateY(-3px);
    color: white;
}

.share-link.linkedin {
    background-color: #0077B5;
}

.share-link.twitter {
    background-color: #1DA1F2;
}

.share-link.facebook {
    background-color: #4267B2;
}

.share-link.email {
    background-color: #EA4335;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: var(--dark);
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.toc-list a:hover {
    color: var(--primary);
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.related-post:last-child {
    border-bottom: none;
}

.related-post:hover {
    transform: translateX(5px);
}

.related-img {
    width: 60px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 1rem;
}

.related-title {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
    transition: all 0.2s ease;
}

.related-post:hover .related-title {
    color: var(--primary);
}

.related-date {
    font-size: 0.8rem;
    color: var(--gray);
}

.team-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-img-container {
    height: 300px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.team-position {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(26, 54, 93, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.value-card, .vision-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.value-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-icon, .vision-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(49, 130, 206, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon, .vision-card:hover .vision-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.value-title, .vision-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.vision-list {
    margin-top: 1.5rem;
    padding-left: 1.25rem;
}

.vision-list li {
    margin-bottom: 0.75rem;
}

.investor-logo {
    max-height: 60px;
    opacity: 0.75;
    transition: all 0.3s ease;
    filter: grayscale(80%);
}

.investor-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.kvkk-principle-card,
.data-processing-card,
.training-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.kvkk-principle-card:hover,
.data-processing-card:hover,
.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.kvkk-principle-icon,
.data-processing-icon,
.training-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(49, 130, 206, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.kvkk-principle-card:hover .kvkk-principle-icon,
.data-processing-card:hover .data-processing-icon,
.training-card:hover .training-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.kvkk-principle-title,
.data-processing-title,
.training-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.rights-container {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.right-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.right-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.right-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: rgba(49, 130, 206, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.right-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.rights-form-container {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.rights-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 1rem;
}

.rights-form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.process-timeline {
    position: relative;
    padding-left: 3rem;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 2px;
    background-color: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -3rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--primary);
    z-index: 1;
}

.timeline-dot:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--primary);
}

.timeline-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.response-time-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.response-time-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(49, 130, 206, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
}

.response-time-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.kvkk-contact-card {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.kvkk-contact-card:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.kvkk-contact-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.kvkk-contact-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
    text-align: center;
}

.kvkk-contact-info {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 0;
}

.security-card,
.compliance-card,
.incident-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.security-card:hover,
.compliance-card:hover,
.incident-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.security-icon,
.incident-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(49, 130, 206, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.security-card:hover .security-icon,
.incident-card:hover .incident-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.security-title,
.incident-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.compliance-icon {
    width: 96px;
    height: 96px;
    background-color: rgba(49, 130, 206, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.compliance-card:hover .compliance-icon {
    transform: scale(1.1);
}

.compliance-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--dark);
    text-align: center;
}

.security-tips-list {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.security-tip-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.security-tip-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tip-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
    line-height: 1;
    margin-right: 1.5rem;
    min-width: 40px;
}

.tip-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.security-contact-card {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.security-contact-card:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.security-contact-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.security-contact-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
    text-align: center;
}

.security-contact-info {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 0;
}

.search-container {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    margin-bottom: -50px;
    position: relative;
    z-index: 10;
}

.search-form .form-control {
    height: 60px;
    border-radius: 8px 0 0 8px;
    font-size: 1.1rem;
    padding-left: 1.5rem;
}

.search-form .btn {
    border-radius: 0 8px 8px 0;
    padding: 0 1.5rem;
    font-size: 1.1rem;
}

.help-category-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--dark);
    display: block;
    border: 1px solid var(--light-gray);
}

.help-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    color: var(--primary);
}

.help-category-icon {
    width: 72px;
    height: 72px;
    background-color: rgba(49, 130, 206, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.help-category-card:hover .help-category-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.help-category-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.help-category-card:hover .help-category-title {
    color: var(--primary);
}

.help-article-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    height: 100%;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.help-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.help-article-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: rgba(49, 130, 206, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.help-article-card:hover .help-article-icon {
    background-color: var(--primary);
    color: white;
}

.help-article-content {
    flex-grow: 1;
}

.help-article-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.help-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.help-article-views {
    font-size: 0.9rem;
    color: var(--gray);
}

.help-article-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.help-article-link:hover {
    color: var(--secondary);
}

.help-article-link i {
    margin-left: 0.5rem;
    transition: all 0.2s ease;
}

.help-article-link:hover i {
    transform: translateX(3px);
}

.video-tutorial-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-gray);
}

.video-tutorial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.video-tutorial-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(26, 54, 93, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-tutorial-card:hover .video-play-button {
    background-color: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.video-description {
    color: var(--gray);
    margin-bottom: 1rem;
}

.video-duration {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

.support-card {
    background-color: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.support-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.support-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.support-contact-methods {
    margin-top: 2rem;
}

.support-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.support-contact-item i {
    width: 48px;
    height: 48px;
    background-color: rgba(49, 130, 206, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.support-contact-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.support-response-time {
    font-size: 0.9rem;
    color: var(--gray);
    display: block;
    margin-top: 0.25rem;
}

.support-form-container {
    background-color: var(--off-white);
    border-radius: 12px;
    padding: 2.5rem;
}

.support-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.career-image-grid img {
    transition: all 0.3s ease;
}

.career-image-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--light-gray);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    background-color: rgba(49, 130, 206, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.benefit-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.department-heading {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.department-heading h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0;
}

.department-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.job-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-gray);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.job-header {
    padding: 1.5rem;
    background-color: var(--primary);
    color: white;
}

.job-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: white;
}

.job-location {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.job-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.job-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.job-type, .job-experience {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 50px;
    background-color: rgba(26, 54, 93, 0.1);
    color: var(--primary);
}

.job-footer {
    padding: 1.5rem;
    background-color: var(--off-white);
    border-top: 1px solid var(--light-gray);
}

.application-process {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px dashed var(--light-gray);
}

.process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.process-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1.5rem;
}

.process-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.cookie-settings-demo {
    border: 1px solid var(--light-gray);
}

.cookie-manager-card {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cookie-category {
    background-color: var(--off-white);
    border-radius: 8px;
    padding: 1.5rem;
}
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(49, 130, 206, 0.1);
    color: var(--primary);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-link.dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: middle;
}
.offcanvas {
    max-width: 320px;
}

.offcanvas-body .nav-link {
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.6rem 0;
    display: block;
    transition: all 0.2s ease;
}

.offcanvas-body .nav-link:hover {
    color: var(--primary);
}

.offcanvas-body .dropdown-toggle {
    cursor: pointer;
}

.offcanvas-body .dropdown-toggle .fa-chevron-down {
    transition: transform 0.2s ease;
}

.offcanvas-body .dropdown-toggle[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.offcanvas-body .collapse {
    margin-top: 0.25rem;
}

.offcanvas-body .collapse .nav-link, .offcanvas-body .collapsing .nav-link {
    font-size: 1rem;
    padding: 0.4rem 0;
}
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h5 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.cookie-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
@media (max-width: 991.98px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
    .dropdown-menu {
        margin-top: 0;
        box-shadow: none;
        padding: 0.5rem 0;
        border-radius: 0;
        background-color: transparent;
    }
    .dropdown-item {
        padding: 0.5rem 1rem;
        color: var(--gray);
    }
    .offcanvas-body .nav-link.active {
        color: var(--primary);
        font-weight: 600;
    }
    .nav-link.dropdown-toggle::after {
        margin-left: 0.5rem;
        vertical-align: middle;
    }
    .hero {
        padding-top: 9rem;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .feature-card,
    .testimonial-card,
    .tech-card {
        padding: 2rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .resource-sidebar {
        position: static;
        margin-top: 3rem;
    }

    .whitepaper-card {
        flex-direction: column;
    }

    .whitepaper-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .resource-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .resource-author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-img {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .author-social {
        justify-content: center;
    }

    .help-article-card {
        flex-direction: column;
    }

    .help-article-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .process-step {
        flex-direction: column;
    }

    .process-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .support-card {
        padding: 2rem;
    }

    .timeline-item {
        padding-left: 15px;
    }
}

@media (max-width: 767.98px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        align-self: flex-end;
    }
    .section {
        padding: 4rem 0;
    }

    .hero {
        text-align: center;
        min-height: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .case-study-card {
        height: 320px;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .testimonial-card {
        margin-bottom: 2rem;
    }

    .pricing-toggle {
        flex-wrap: wrap;
        justify-content: center;
    }

    .discount-badge {
        position: static;
        transform: none;
        margin-top: 0.5rem;
    }

    .comparison-table .feature-column {
        width: 150px;
    }

    .resource-detail-hero {
        padding: 7rem 0 2rem;
    }

    .resource-title {
        font-size: 2rem;
    }

    .right-item,
    .security-tip-item {
        flex-direction: column;
    }

    .right-icon,
    .tip-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .support-contact-item {
        flex-direction: column;
        text-align: center;
    }

    .support-contact-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .cookie-manager-card {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .case-study-card {
        height: 280px;
    }

    .testimonial-card {
        padding: 1.75rem;
    }
}