:root {
    --white: #ffffff;
    --primary-blue: #1a73e8;
    --dark-blue: #0a2a43;
    --gold: #E8B600;
    --light-gray: #F5F7FA;
    --text-gray: #606F7B;
    --border-gray: #E5E7EB;
}

body {
    font-size: 14px;
    scroll-behavior: smooth;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DM Sans', sans-serif;
}

/* Margin */
.mt--5 {
    margin-top: -5px;
}

/* Custom Btns */
.btn-primary-custom {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 1.5rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(26, 115, 232, 0.25);
    border: none;
    transition: all 0.3s;
    font-size: 18px;
    transform: translateY(0);
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-3px);
    background-color: #1557b0;
    box-shadow: 0 20px 25px -5px rgba(26, 115, 232, 0.3);
}

.btn-outline-custom {
    border: 2px solid rgba(10, 42, 67, 0.2);
    color: var(--dark-blue);
    padding: 1.5rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    background-color: transparent;
    transition: all 0.3s;
    font-size: 18px;
}

.btn-outline-custom:hover {
    color: #ffffff;
    background-color: var(--dark-blue);;
    border-color: rgba(10, 42, 67, 0.3);
}

.btn-bg-gray {
    transition: all 0.3s;
    border-radius: 0.75rem;
    background-color: transparent;
}

.btn-bg-gray:hover {
    background-color: #f5f5f5;
}

/* Dark Btn */
.btn-dark-custom {
    background-color: #0A2A43;
    color: #fff;
    transition: all 0.2s ease;
}

.btn-dark-custom:hover {
    color: #ffffff;
    background-color: rgba(10, 42, 67, 0.9);
}

.btn-dark-custom:focus-visible {
    outline: none;
    box-shadow: 0 0 0 1px #0A2A43;
}

/* Light Btns */
.btn-light-custom {
    background-color: white;
    color: var(--dark-blue);
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: none;
    transition: all 0.3s;
    font-size: 18px;
}

.btn-light-custom:hover {
    background-color: #f9fafb;
}

.btn-outline-light-custom {
    border: 2px solid white;
    color: white;
    background-color: transparent;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s;
    font-size: 18px;
}

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

/* Custom utility classes */
.text-primary-custom {
    color: var(--primary-blue) !important;
}

.text-dark-custom {
    color: var(--dark-blue) !important;
}

.text-gold-custom {
    color: var(--gold) !important;
}

.text-gray-custom {
    color: var(--text-gray) !important;
}

.bg-light-custom {
    background-color: var(--light-gray) !important;
}

.bg-primary-custom {
    background-color: var(--primary-blue) !important;
}

.bg-dark-custom {
    background-color: var(--dark-blue) !important;
}

.border-primary-custom {
    border-color: var(--primary-blue) !important;
}

/* Badge spinner animation */
@keyframes badge-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.badge-spinner {
    animation: badge-spin 1s linear infinite;
}

.imageye-selected {
    outline: 2px solid black !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) !important;
}

/* Navbar */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 80px;
}

.logo-container {
    position: relative;
    width: 36px;
    height: 36px;
}

.logo-bg-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--primary-blue), var(--dark-blue));
    border-radius: 8px;
    transform: rotate(3deg);
}

.logo-bg-2 {
    position: absolute;
    inset: 0;
    background-color: var(--dark-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-title {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1.125rem;
    line-height: 1;
    margin-bottom: 1px;
}

.logo-subtitle {
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.navbar .nav-link {
    font-weight: 500;
    font-size: 16px;
    color: #2e3236 !important;
}

.navbar-custom .navbar-toggler {
    border: 0;
    box-shadow: none;
}

@media (max-width: 991px) {
    .offcanvas {
        height: 100vh;
    }
}

/* Mian */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, var(--light-gray), white);
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;

    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

/* .hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.03;
} */

.hero-circle-1 {
    position: absolute;
    top: 5.5rem;
    right: 6.5rem;
    width: 20rem;
    height: 20rem;
    border: 40px solid #eff1f5;
    border-radius: 50%;
    animation: move_bottom 3s infinite;
}

.hero-circle-2 {
    position: absolute;
    bottom: 7.5rem;
    right: 7.5rem;
    width: 15rem;
    height: 15rem;
    border: 25px solid #f5f7fc;
    border-radius: 50%;
    animation: move_left 4s infinite;
}

@keyframes move_left {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateX(-35px);
	}
}

@keyframes move_bottom {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(25px);
	}
}

.trusted-badge {
    background-color: white;
    border: 1px solid rgba(232, 182, 0, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    color: var(--dark-blue);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    font-size: 72px;
}

.hero-highlight {
    color: var(--primary-blue);
    display: block;
}

.hero-subtitle {
    color: var(--text-gray);
    font-size: 1.875rem;
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
}

.hero-description {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.625;
    margin-bottom: 2rem;
}

.hero-section .btn {
    height: 55px;
    display: flex;
    align-items: center;
}

/* Hero Demo Card */
.demo-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(10, 42, 67, 0.1);
    padding: 1.5rem;
    border: 1px solid #f3f4f6;
    position: relative;
}

.demo-browser-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.demo-dots {
    display: flex;
    gap: 0.375rem;
}

.demo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-url-bar {
    flex: 1;
    background-color: var(--light-gray);
    border-radius: 0.5rem;
    height: 2rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.demo-url-text {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.demo-section {
    background-color: var(--light-gray);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.demo-metric-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.demo-metric-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    display: block;
    margin-bottom: 0.25rem;
}

.demo-metric-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.demo-result-card {
    background: linear-gradient(to right, rgba(26, 115, 232, 0.1), rgba(232, 182, 0, 0.1));
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(26, 115, 232, 0.2);
}

.demo-result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.demo-badge {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border: 1px solid #f3f4f6;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 48px;
        margin-bottom: 1rem;
    }

    .hero-description {
        margin-bottom: 1rem;
    }
}

/* How It Works Section */
.section-title {
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-highlight {
    color: var(--primary-blue);
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.125rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background-color: var(--light-gray);
    border-radius: 1rem;
    padding: 24px;
    height: 100%;
    border: 1px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(26, 115, 232, 0.2);
}

.step-card::after {
    position: absolute;
    content: "\f061";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.steps-connector>div:last-child .step-card::after {
    display: none;
}

.step-icon-container {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
    color: #ffffff;
}

.step-card:hover .step-icon-container {
    transform: scale(1.1);
}

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.1;
}

.step-card::before {
    position: absolute;
    content: '';
    height: 4px;
    width: 30px;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
}

.steps-connector>div:nth-child(1) .step-card::before {
    background-color: #2479ea;
}

.steps-connector>div:nth-child(2) .step-card::before {
    background-color: #2e70c2;
}

.steps-connector>div:nth-child(3) .step-card::before {
    background-color: #2a465b;
}

.steps-connector>div:nth-child(4) .step-card::before {
    background-color: #ebc127;
}

.steps-connector>div:nth-child(5) .step-card::before {
    background-color: #32ae60;
    display: none;
}

@media (min-width: 576px) {
    .step-card::after {
        top: 50%;
        right: -16px;
        transform: translateY(-50%);
    }
}

@media (max-width: 1200px) and (min-width: 992px) {
    .steps-connector>div:nth-child(4) .step-card::after {
        transform: rotate(90deg);
    }

    .steps-connector>div:nth-child(4) .step-card::before {
        display: none;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .steps-connector>div:nth-child(3) .step-card::after {
        transform: rotate(90deg);
    }

    .steps-connector>div:nth-child(3) .step-card::before {
        display: none;
    }
}

@media (max-width: 767px) and (min-width: 576px) {
    .steps-connector>div:nth-child(2) .step-card::after,
    .steps-connector>div:nth-child(4) .step-card::after {
        transform: rotate(90deg);
    }

    .steps-connector>div:nth-child(2) .step-card::before,
    .steps-connector>div:nth-child(4) .step-card::before {
        display: none;
    }
}

@media (max-width: 575px) {
    .steps-connector .step-card::after {
        left: 50%;
        bottom: -27px;
        transform: rotate(90deg) translateX(-50%);
    }

    .steps-connector>div .step-card::before {
        display: none;
    }
}

/* Features Section */
.features-section {
    background-color: var(--dark-blue);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    border-color: rgba(232, 182, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: rgba(232, 182, 0, 0.2);
    color: var(--gold);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.feature-icon-container {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--light-gray);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pricing-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border: 1px solid rgba(0, 110, 255, 0.322);
    box-shadow: 0 10px 15px -3px rgba(26, 115, 232, 0.2);
}

.pricing-card-popular {
    border: 3px solid var(--primary-blue);
    box-shadow: 0 25px 50px -12px rgba(26, 115, 232, 0.1);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.pricing-card-popular:hover {
    border: 3px solid var(--primary-blue) !important;
}

.popular-badge {
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #fadc81, var(--gold));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.25rem;

    animation: fade_inout 3s infinite;
}

@keyframes fade_inout {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}

    100% {
        opacity: 1;
    }
}

.pricing-price {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 3rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(26, 115, 232, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-section .pricing-feature span {
    font-size: 14px;
}

.pricing-section .list-unstyled {
    padding-bottom: 70px;
}

.pricing-section .btn {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    width: -webkit-fill-available !important;
}

.yearly-price .pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.gradient-badge {
    color: #ffffff !important;
    background: linear-gradient(to right, var(--gold), #a78301) !important;
}

/* Switch styling */
.pricing-toggle .toggle-container {
    display: flex;
    align-items: center;
}

.pricing-toggle .toggle-checkbox {
    display: none;
}

.pricing-toggle .toggle-label {
    display: inline-block;
    width: 50px;
    height: 24px;
    background: var(--primary-blue);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.pricing-toggle .toggle-label:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 4px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.pricing-toggle .off-text,
.pricing-toggle .on-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
    transition: opacity 0.3s;
}

.pricing-toggle .off-text {
    left: 14px;
    opacity: 1;
}

.pricing-toggle .on-text {
    right: 14px;
    opacity: 0.5;
}

.pricing-toggle .toggle-checkbox:checked + .toggle-label {
    background: var(--gold);
}

.pricing-toggle .toggle-checkbox:checked + .toggle-label:before {
    left: 28px;
}

.pricing-toggle .toggle-checkbox:checked + .toggle-label .off-text {
    opacity: 0.5;
}

.pricing-toggle .toggle-checkbox:checked + .toggle-label .on-text {
    opacity: 1;
}

/* Smooth transition for price switching */
.monthly-price,
.yearly-price {
    transition: opacity 0.3s ease;
}

/* Active label styling */
.pricing-label-active {
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
}

.pricing-label-inactive {
    color: var(--text-gray) !important;
}

/* Pricing display styles */
.monthly-price,
.yearly-price {
    display: none;
}

.monthly-price {
    display: block;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--light-gray);
    border-radius: 1rem;
    padding: 2rem;
    transition: 0.3s all ease-in-out;
    height: 100%;
    box-shadow: none;
}

.testimonial-card:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: rgba(26, 115, 232, 0.2);
    font-size: 2.5rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--primary-blue), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar-text {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-gray);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.faq-item {
    background-color: white;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item.open {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-button {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--dark-blue);
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    font-size: 16px;
}

.faq-button:hover {
    color: var(--primary-blue);
    text-decoration: none;
}

.faq-button .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.2s;
}

.faq-button[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to bottom right, var(--primary-blue), var(--dark-blue));
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-circle-1 {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
    border: 30px solid white;
    border-radius: 50%;
}

.cta-circle-2 {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    border: 40px solid white;
    border-radius: 50%;
}

.cta-section .btn {
    height: 55px;
    display: flex;
    align-items: center;
}

.cta-section p {
    opacity: 0.7;
}

.cta-section .btn-light-custom:hover {
    color: #ffffff;
    background-color: var(--gold);
    transform: scale(1.1);
    box-shadow: rgba(232, 182, 0, 0.45) 0px 25px 20px -20px;
}

.cta-section .btn-outline-light-custom {
    border: 0;
}

.cta-section .btn-outline-light-custom:hover {
    color: #000;
    background-color: #ffffff;
    transform: scale(1.1);
}

@media (max-width: 575px) {
    .cta-section .btn {
        justify-content: center;
    }
}

/* Auth Container */
.auth-container {
    max-width: 32rem;
    width: 100%;
}

.auth-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-gray);
    padding: 2rem;
}

.auth-container .btn {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Styles */
.form-label-custom {
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
}

.form-input-custom {
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    width: 100%;
    transition: all 0.2s;
}

.form-input-custom:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

/* Form Select Styles */
.form-select-custom {
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    width: 100%;
    transition: all 0.2s;
    background-color: white;
}

.form-select-custom:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-gray);
}

.divider span {
    position: relative;
    background-color: white;
    padding: 0 1rem;
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Checkbox */
.form-check-input-custom:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.form-check-input-custom:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(26, 115, 232, 0.25);
}

/* Links */
.link-primary {
    color: var(--primary-blue);
    text-decoration: none;
}

.link-primary:hover {
    color: #1557b0;
    text-decoration: underline;
}

/* Password toggle */
.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
}

.password-toggle:hover {
    color: var(--dark-blue);
}

/* Forgot Password */
/* Icon Container */
.icon-container {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(26, 115, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-container i {
    color: var(--primary-blue);
    font-size: 1.75rem;
}

/* Back Link */
.back-link {
    color: var(--text-gray);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--dark-blue);
}

/* Responsive */
@media (max-width: 640px) {
    .auth-card {
        padding: 1.5rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 1rem;
    }
}

@media (max-width: 575px) {
    .auth-container {
        margin: 35px 0;
    }
}

/* Blogs */
.blog-hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-tagline {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.blog-categories {
    padding: 2rem 0;
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--border-gray);
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.category-btn {
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-gray);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.blog-posts {
    padding: 4rem 0;
    background-color: var(--white);
}

.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    height: 100%;
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    position: relative;
}

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

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: var(--text-gray);
}

.post-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-blue);
    line-height: 1.4;
}

.post-excerpt {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pagination-section {
    padding: 0 0 3rem 0;
    background-color: var(--white);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    background: white;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.newsletter-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
    border-top: 1px solid var(--border-gray);
}

.newsletter-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.newsletter-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, rgba(26, 115, 232, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.newsletter-form {
    max-width: 400px;
    margin: 2rem auto 0;
}

.form-group {
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.newsletter-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.3s;
}

.newsletter-btn:hover {
    background: #1557b0;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(26, 115, 232, 0.3);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #1557b0;
    transform: translateY(-3px);
}

.no-results {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero {
        padding: 4rem 0 3rem;
    }

    .newsletter-card {
        padding: 2rem;
    }

    .post-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .category-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .newsletter-btn {
        position: static;
        width: 100%;
        margin-top: 0.75rem;
        height: 40px;
    }
}

/* Legal Page */
.legal-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a365d 100%);
    color: white;
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(26, 115, 232, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 182, 0, 0.05) 0%, transparent 50%);
}

.legal-container {
    padding: 4rem 0;
    background-color: var(--white);
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.legal-tabs {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.legal-tab {
    display: block;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    border: 0 !important;
}

.legal-tab:last-child {
    border-bottom: none;
}

.legal-tab:hover {
    color: var(--primary-blue);
    background-color: rgba(26, 115, 232, 0.05);
}

.legal-tab.active {
    border-top: 0;
    color: var(--primary-blue) !important;
    background-color: rgba(26, 115, 232, 0.08);
    border-left-color: var(--primary-blue);
}

.legal-tab.active::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--primary-blue);
}

.legal-tab-icon {
    width: 20px;
    text-align: center;
    margin-right: 0.75rem;
    color: inherit;
}

.legal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-gray);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.legal-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-gray);
}

.last-updated {
    background: rgba(232, 182, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--gold);
}

.last-updated strong {
    color: var(--gold);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

/* .section-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.section-subtitle {
    font-weight: 600;
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--dark-blue);
} */

.legal-text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-list li {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.legal-table th,
.legal-table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-gray);
    text-align: left;
}

.legal-table th {
    background-color: rgba(26, 115, 232, 0.05);
    color: var(--dark-blue);
    font-weight: 600;
}

.legal-table td {
    color: var(--text-gray);
}

.legal-highlight {
    background: rgba(26, 115, 232, 0.05);
    border-left: 4px solid var(--primary-blue);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.contact-info {
    background: rgba(16, 185, 129, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-title {
    font-weight: 600;
    color: var(--success-green);
    margin-bottom: 0.75rem;
}

.tab-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) and (min-width: 576px) {
    .legal-tabs .nav-tabs {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .legal-tab.active::before {
        left: -1px;
        right: -1px;
        top: auto;
        width: 100%;
        height: 4px;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 4rem 0 3rem;
    }

    .legal-container {
        padding: 2rem 0;
    }

    .legal-title {
        font-size: 2rem;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .nav-tabs .nav-link {
        padding: 16px;
        margin-left: 0;
        margin-right: 0;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .legal-table {
        display: block;
        overflow-x: auto;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }

    .nav-tabs .nav-link {
        white-space: nowrap;
    }

    .legal-tabs .nav-tabs {
        display: block;
    }
}

/* GDPR Compliance */
.gdpr-hero {
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.breadcrumb-nav {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary-blue);
}

.breadcrumb-divider {
    margin: 0 0.5rem;
    color: var(--text-gray);
}

.current-page {
    color: var(--dark-blue);
    font-weight: 500;
}

.hero-icon-container {
    width: 64px;
    height: 64px;
    background-color: rgba(26, 115, 232, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.hero-icon {
    color: var(--primary-blue);
    font-size: 2rem;
}

.section-badge {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.gdpr-section-title {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.highlight-text {
    color: var(--primary-blue);
}

.gdpr-hero-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

.gdpr-features-section {
    padding: 4rem 0;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading {
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.section-subheading {
    color: var(--text-gray);
    max-width: 42rem;
    margin: 0 auto;
}

/* .feature-card {
    background-color: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
} */

.feature-icon {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--dark-blue);
}

.feature-description {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.5;
}

.rights-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.rights-container {
    max-width: 60rem;
    margin: 0 auto;
}

.rights-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.rights-title {
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.right-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-gray);
    margin-bottom: 1.5rem;
}

.right-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.right-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.right-description {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.subprocessors-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.subprocessors-table {
    width: 100%;
    font-size: 0.875rem;
}

.subprocessors-table thead th {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-gray);
    color: var(--dark-blue);
    font-weight: 600;
    text-align: left;
}

.subprocessors-table tbody td {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-gray);
}

.subprocessors-table tbody tr:last-child td {
    border-bottom: none;
}

.dpo-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
}

.dpo-info {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.dpo-title {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.dpo-details {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(26, 115, 232, 0.3);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #1557b0;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gdpr-hero {
        padding: 4rem 0 3rem;
    }

    .gdpr-section-title {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .gdpr-features-section,
    .rights-section {
        padding: 3rem 0;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .gdpr-section-title {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .gdpr-hero-description {
        font-size: 1rem;
    }

    .rights-card,
    .subprocessors-card,
    .dpo-card {
        padding: 1.5rem;
    }

    .subprocessors-table {
        font-size: 0.75rem;
    }
}

/* About Us */
.about-hero {
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section-title {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

.our-story-section {
    padding: 4rem 0;
}

.story-title {
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.story-content {
    color: var(--text-gray);
    line-height: 1.7;
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.stats-card {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, rgba(232, 182, 0, 0.1) 100%);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background-color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.stat-blue .stat-number {
    color: var(--primary-blue);
}

.stat-gold .stat-number {
    color: var(--gold);
}

.stat-dark .stat-number {
    color: var(--dark-blue);
}

.values-section {
    padding: 4rem 0;
    background-color: var(--dark-blue);
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-title {
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.values-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 42rem;
    margin: 0 auto;
}

.value-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}

.value-icon {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.value-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.value-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
}

.team-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-title {
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.team-subtitle {
    color: var(--text-gray);
    max-width: 42rem;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.member-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.member-name {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--dark-blue);
}

.member-position {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }

    .about-section-title {
        font-size: 2.5rem;
    }

    .story-title {
        font-size: 2rem;
    }

    .values-title,
    .team-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .our-story-section,
    .values-section,
    .team-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .about-section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .story-title,
    .values-title,
    .team-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .value-card,
    .stat-box {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    .stats-card {
        margin-top: 2rem;
    }
}

/* Contact Us Page */
.contact-section {
    padding: 80px 0;
}

.contact-info-card {
    background-color: transparent;
    margin-bottom: 35px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(26, 115, 232, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #1A73E8;
    font-size: 20px;
}

.contact-details h3 {
    color: #0A2A43;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 3px;
}

.contact-details p {
    color: #606F7B;
    margin-bottom: 0;
    font-size: 14px;
}

.contact-form-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    padding: 32px;
}

.contact-form-card h2 {
    color: #0A2A43;
    font-weight: 700;
    margin-bottom: 24px;
}

.live-chat-card {
    background-color: #F5F7FA;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.live-chat-card h3 {
    color: #0A2A43;
    font-weight: 600;
    margin-bottom: 8px;
}

.live-chat-card p {
    color: #606F7B;
    font-size: 14px;
    margin-bottom: 0;
}

.live-chat-icon {
    color: #E8B600;
    font-size: 20px;
    margin-right: 12px;
}

.contact-item {
    margin-bottom: 24px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-form-card {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .contact-form-card {
        padding: 24px;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: white;
}

.footer-link {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-link:hover {
    color: white;
    text-decoration: none;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer p {
    color: #9ca3af;
}

.footer .logo-bg-2 {
    background-color: #ffffff;
}

.footer .logo-title {
    color: #ffffff;
}

.footer .logo-subtitle {
    color: var(--gold);
}
