/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 6px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    width: 100%;
    display: block;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
    height: 40px;
    display: flex;
    align-items: center;
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
}

/* Desktop styles - show text */
.desktop-email span,
.desktop-phone {
    display: inline;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.desktop-phone:hover {
    color: #ffffff;
}

.mobile-only {
    display: none;
}

/* Hide dropdown on desktop */
@media (min-width: 769px) {
    .phone-dropdown-menu {
        display: none !important;
    }
    
    .dropdown-arrow {
        display: none !important;
    }
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    position: relative;
    cursor: pointer;
}

.announcement-item a {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

.announcement-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.announcement-item i {
    color: #60a5fa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.announcement-item:hover i {
    color: #93c5fd;
}

.announcement-item span {
    color: #e2e8f0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.announcement-item:hover span {
    color: #ffffff;
}

/* Phone Dropdown Styles */
.phone-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.phone-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1002;
    margin-top: 8px;
}

.phone-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
}

/* Ensure dropdown works on mobile */
@media (max-width: 768px) {
    .phone-dropdown {
        cursor: pointer;
        position: relative;
        z-index: 1003;
    }
    
    .phone-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 0.5rem 0;
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 10000;
        border: 1px solid #e5e7eb;
        color: #333333;
        margin-top: 10px;
    }
    
    .phone-dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        display: block;
    }
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.phone-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.phone-option:last-child {
    border-bottom: none;
}

.phone-option:hover {
    background-color: #f8f9fa;
    color: #2563eb;
}

.phone-option .flag {
    font-size: 1.2rem;
}

.phone-option .number {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Announcement bar animation */
.announcement-bar {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .announcement-content {
        flex-direction: row;
        gap: 15px;
        justify-content: space-between;
    }
    
    .announcement-item {
        justify-content: center;
        font-size: 1rem;
        padding: 6px 10px;
    }
    
    /* Mobile styles - hide text, show icons only */
    .desktop-email span,
    .desktop-phone {
        display: none;
    }
    
    .mobile-only {
        display: inline;
    }
    
    .phone-dropdown-menu {
        left: 50%;
        transform: translateX(-50%);
        min-width: 180px;
    }
    
    .phone-option {
        padding: 0.5rem 0.75rem;
    }
    
    .phone-option .number {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        padding: 6px 0;
        font-size: 0.75rem;
    }
    
    .announcement-content {
        gap: 8px;
    }
    
    .announcement-item {
        padding: 3px 6px;
        font-size: 0.7rem;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Force visibility for critical elements */
.fade-in, .slide-in-left, .slide-in-right, .slide-in-up, .slide-in-down,
.scale-in, .bounce-in, .rotate-in, .flip-in, .zoom-in {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

.slide-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease forwards;
}

.slide-in-down {
    opacity: 0;
    transform: translateY(-50px);
    animation: slideInDown 0.8s ease forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.6s ease forwards;
}

.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    animation: bounceIn 0.8s ease forwards;
}

.rotate-in {
    opacity: 0;
    transform: rotate(-180deg) scale(0.3);
    animation: rotateIn 0.8s ease forwards;
}

.flip-in {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    animation: flipIn 0.8s ease forwards;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.5);
    animation: zoomIn 0.6s ease forwards;
}

.stagger-animation {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.stagger-animation.animated {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

/* Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.3);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes flipIn {
    from {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    40% {
        transform: perspective(400px) rotateY(-20deg);
    }
    60% {
        transform: perspective(400px) rotateY(10deg);
    }
    80% {
        transform: perspective(400px) rotateY(-5deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hover Animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Floating Animation */
.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Shake Animation */
.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 2px solid #2563eb;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #2563eb; }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 40px; /* Position navbar below announcement bar */
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px; /* Adjusted top padding for navbar height */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Form loading state */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Calendly Section Styles */
.calendly-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.calendly-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calendly-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.calendly-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.calendly-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calendly-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.calendly-benefits .benefit-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.calendly-benefits .benefit-item i {
    color: #3b82f6;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.calendly-benefits .benefit-item span {
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
}

.calendly-widget {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.calendly-inline-widget {
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .calendly-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .calendly-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .calendly-section {
        padding: 60px 0;
    }

    .calendly-text h2 {
        font-size: 1.8rem;
    }

    .calendly-text p {
        font-size: 1rem;
    }

    .calendly-benefits {
        gap: 12px;
    }

    .calendly-benefits .benefit-item {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .calendly-section {
        padding: 40px 0;
    }

    .calendly-text h2 {
        font-size: 1.5rem;
    }

    .calendly-widget {
        padding: 15px;
    }
}

/* Banner Section */
.banner-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.banner-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background: white;
}

.banner-slide.active {
    opacity: 1;
}

.banner-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 4rem;
}

.banner-text {
    flex: 1;
    padding-right: 3rem;
}

.banner-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.banner-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.banner-image {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.banner-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.banner-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(37, 99, 235, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-nav:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.banner-nav i {
    color: #2563eb;
    font-size: 1.2rem;
}

.banner-prev {
    left: 2rem;
}

.banner-next {
    right: 2rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Modules Section */
.modules {
    padding: 80px 0;
    background: white;
}

.modules h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.module-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.module-card:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.module-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.module-header i {
    font-size: 2rem;
    color: #2563eb;
    margin-right: 1rem;
}

.module-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.module-card ul {
    list-style: none;
}

.module-card li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.module-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-info p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-item i {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: #2563eb;
}

.footer-logo .logo-image {
    height: 35px;
    width: auto;
    object-fit: contain;
    margin-right: 0.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #cbd5e1;
}

/* Module Detail Pages */
.module-detail {
    padding: 160px 0 80px; /* Adjusted top padding for navbar height */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

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

.module-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
}

.module-detail-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.module-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.module-content {
    max-width: 1000px;
    margin: 0 auto;
}

.module-description {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.module-description h2 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.module-description p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
}

.module-features-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.module-features-section h2 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.feature-item i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.feature-item h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
    text-align: center;
    width: 100%;
}

.module-benefits {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.module-benefits h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.module-benefits ul {
    list-style: none;
    padding: 0;
}

.module-benefits li {
    padding: 0.75rem 0;
    color: #64748b;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
}

.module-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.module-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.module-cta .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.module-cta .btn-primary {
    background: #2563eb;
    color: white;
    border: 2px solid #2563eb;
}

.module-cta .btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.module-cta .btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.module-cta .btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Ensure CTA text is always visible */
.module-cta .btn {
    opacity: 1 !important;
    visibility: visible !important;
    color: inherit !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

.module-cta .btn-primary {
    color: white !important;
    background: #2563eb !important;
    border-color: #2563eb !important;
}

.module-cta .btn-secondary {
    color: #2563eb !important;
    background: white !important;
    border-color: #2563eb !important;
}

.module-cta .btn i {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 30px;
        width: auto;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px; /* Adjusted to account for announcement bar (40px) + navbar height (32px) */
        display: flex;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 0; /* Remove padding to eliminate gaps */
        height: calc(100vh - 72px); /* Full height minus header */
        overflow-y: auto;
        z-index: 1002; /* Increased to be above navbar and announcement bar */
        font-family: 'Inter', sans-serif; /* Consistent font */
        border-top: none; /* Remove any top border */
        margin-top: 0; /* Remove any margin */
        top: 72px !important; /* Force exact positioning */
    }

    .nav-menu.active {
        left: 0 !important;
        transform: translateX(0) !important;
        top: 72px !important; /* Ensure it starts exactly below navbar */
    }
    
    /* More specific rule to ensure it overrides */
    @media (max-width: 768px) {
        .nav-menu.active {
            left: 0 !important;
            transform: translateX(0) !important;
            top: 72px !important; /* Ensure it starts exactly below navbar */
        }
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        font-weight: 500;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        font-family: 'Inter', sans-serif;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-menu .nav-link:hover {
        background-color: #f8f9fa;
        color: #2563eb;
        transform: translateX(10px);
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
        transition: all 0.3s ease;
    }
    
    /* Toggle button animation when menu is open */
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Remove backdrop overlay - no translucent background */
    
    /* Ensure announcement bar stays on top */
    .announcement-bar {
        z-index: 1001;
    }
    
    /* Ensure navbar stays above mobile menu */
    .navbar {
        z-index: 1000;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .modules-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Banner responsive styles */
    .banner-carousel {
        height: auto;
        min-height: 500px;
        margin: 0 1rem;
        border-radius: 15px;
    }

    .banner-content {
        flex-direction: column;
        padding: 2rem 1rem;
        text-align: center;
        height: auto;
        min-height: 500px;
    }

    .banner-text {
        padding-right: 0;
        margin-bottom: 1.5rem;
        flex: 1;
    }

    .banner-text h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .banner-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .banner-image {
        flex: none;
        height: auto;
        max-height: 300px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }

    .banner-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1rem;
    }
    
    .logo-image {
        height: 25px;
        width: auto;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Banner mobile optimization */
    .banner-carousel {
        margin: 0 0.5rem;
        min-height: 450px;
    }

    .banner-content {
        padding: 1.5rem 0.5rem;
        min-height: 450px;
    }

    .banner-text h2 {
        font-size: 1.5rem;
    }

    .banner-text p {
        font-size: 0.9rem;
    }

    .banner-image {
        max-height: 280px;
        padding: 0.5rem;
    }

    .banner-controls {
        bottom: 1rem;
    }

    .banner-dot {
        width: 10px;
        height: 10px;
    }
} 

.module-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.module-card-link .module-card {
    transition: box-shadow 0.3s, transform 0.3s;
}
.module-card-link:hover .module-card {
    box-shadow: 0 8px 32px rgba(37,99,235,0.15);
    transform: translateY(-6px) scale(1.03);
    border-color: #2563eb;
} 

/* Responsive Design for Module Pages */
@media (max-width: 768px) {
    .module-detail-header h1 {
        font-size: 2.5rem;
    }
    
    .module-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .module-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .module-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .module-detail-header h1 {
        font-size: 2rem;
    }
    
    .module-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .module-content {
        padding: 1rem;
    }

    .module-description h2 {
        font-size: 1.5rem;
    }

    .module-description p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .module-features-section h2 {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .feature-item i {
        display: block;
        margin: 0 auto 1rem auto;
        text-align: center;
    }

    .feature-item h3 {
        font-size: 1.1rem;
        text-align: center;
        width: 100%;
    }

    .feature-item p {
        font-size: 0.85rem;
        text-align: center;
        width: 100%;
    }

    .module-benefits h2 {
        font-size: 1.5rem;
    }

    .module-benefits li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .module-cta h2 {
        font-size: 1.5rem;
    }

    .module-cta p {
        font-size: 0.9rem;
    }
} 

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 0.3em;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -200px;
    min-width: 600px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(37,99,235,0.10);
    border-radius: 0 0 12px 12px;
    z-index: 1001;
    padding: 1em;
    list-style: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.5em;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75em 1em;
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    border-radius: 6px;
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: #f1f5f9;
    color: #2563eb;
}

.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown:focus-within > .dropdown-menu {
    display: grid !important;
}

/* Responsive adjustments for dropdown */
@media (max-width: 1024px) {
    .dropdown-menu {
        min-width: 500px;
        left: -150px;
    }
}

@media (max-width: 1200px) {
    .dropdown-menu {
        left: -100px;
    }
}

/* Mobile Dropdown Support */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: #f8f9fa;
        padding: 0;
        display: none;
        grid-template-columns: 1fr;
        margin-top: 0; /* Remove margin to eliminate gaps */
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding: 1rem 3rem;
        font-size: 0.9rem;
        color: #666;
        border-bottom: 1px solid #e9ecef;
        font-family: 'Inter', sans-serif;
    }
    
    .dropdown-menu li a:hover {
        background-color: #e9ecef;
        color: #2563eb;
    }
    
    .nav-dropdown > .nav-link {
        position: relative;
    }
    
    .nav-dropdown > .nav-link::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active > .nav-link::after {
        transform: rotate(180deg);
    }
} 

/* Consultation Section */
.consultation-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.consultation-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.consultation-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.consultation-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.consultation-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.consultation-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.consultation-benefits .benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.consultation-benefits .benefit-item i {
    font-size: 1.2rem;
    color: #ffd700;
}

.consultation-benefits .benefit-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

.consultation-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.consultation-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffd700;
    color: #1e293b;
    border: none;
    cursor: pointer;
}

.consultation-cta .btn:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.consultation-cta .btn i {
    font-size: 1.2rem;
}

.consultation-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 1024px) {
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .consultation-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .consultation-section {
        padding: 60px 0;
    }
    
    .consultation-text h2 {
        font-size: 1.8rem;
    }
    
    .consultation-text p {
        font-size: 1.1rem;
    }
    
    .consultation-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .consultation-benefits .benefit-item {
        padding: 0.75rem;
    }
    
    .consultation-benefits .benefit-item span {
        font-size: 0.9rem;
    }
    
    .consultation-cta .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .consultation-section {
        padding: 50px 0;
    }
    
    .consultation-text h2 {
        font-size: 1.5rem;
    }
    
    .consultation-text p {
        font-size: 1rem;
    }
    
    .consultation-cta .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Our Clients Section */
.clients-section {
    background: #f8fafc;
    padding: 50px 0 30px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.clients-label {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}
.clients-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}
.clients-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scrollClients 30s linear infinite;
    width: max-content;
}
.clients-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.85;
    transition: filter 0.3s, opacity 0.3s;
}
.clients-track img:hover {
    filter: grayscale(0%) drop-shadow(0 2px 8px #2563eb22);
    opacity: 1;
}
@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .clients-track {
        gap: 24px;
    }
    .clients-track img {
        height: 40px;
    }
    .clients-label {
        font-size: 1.3rem;
    }
} 

/* Blog Page Styles */
.blog-detail {
    padding: 160px 0 80px; /* Adjusted top padding for navbar height */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.blog-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.blog-intro {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.blog-section {
    margin-bottom: 2.5rem;
}

.blog-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.module-list {
    list-style: none;
    padding: 0;
}

.module-list li {
    padding: 0.75rem 0;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.module-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2rem;
}

.module-list li:last-child {
    border-bottom: none;
}

/* Implementation Steps */
.implementation-steps {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateX(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Success Stories */
.success-stories {
    margin: 2rem 0;
}

.story-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.story-item:hover {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.story-item h3 {
    color: #2563eb;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.story-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Trends List */
.trends-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.trends-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
}

.trends-list li:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.trends-list li strong {
    color: #10b981;
    font-weight: 600;
}

/* Getting Started */
.getting-started {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step-card:hover {
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
}

.step-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.step-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Blog Listing */
.blog-listing {
    margin: 2rem 0;
    padding: 2rem 0;
}

.blog-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
    border-color: #2563eb;
}

/* Ensure blog card links are clickable */
.blog-listing a {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.blog-listing a:hover {
    text-decoration: none;
    color: inherit;
}

.blog-listing a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 600;
}

.blog-card-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-card-meta span {
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
}

.blog-card-meta i {
    color: #2563eb;
}

/* Ensure blog section is visible */
.blog-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
}

.blog-section h2 {
    color: #1e293b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

/* Specific styling for More Articles section */
.blog-section:last-of-type {
    margin-top: 4rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    border-top: 2px solid #e2e8f0;
    opacity: 1;
    visibility: visible;
    display: block;
}

.blog-section:last-of-type h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
    text-align: center;
}

/* Ensure blog section links are clickable */
.blog-section:last-of-type a {
    pointer-events: auto;
    cursor: pointer;
    z-index: 1;
    position: relative;
}

.blog-section:last-of-type .blog-card {
    pointer-events: auto;
    cursor: pointer;
}

.blog-cta {
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.blog-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-cta p {
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.blog-cta .btn {
    background: white;
    color: #2563eb;
    border: none;
}

.blog-cta .btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-section h2 {
        font-size: 1.5rem;
    }
    
    .blog-card-content {
        padding: 1.5rem;
    }
    
    .blog-card-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-card-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
}

/* Floating Call-to-Action Widget */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}

.cta-toggle {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 0;
    margin-top: 10px;
    z-index: 1001;
}

.cta-toggle:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transform: scale(1.1);
}

.cta-toggle i {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.cta-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    margin-bottom: 0;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    align-items: flex-end;
    pointer-events: none;
}

.floating-cta:hover .cta-options,
.floating-cta:focus-within .cta-options {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(-20px) !important;
    pointer-events: auto !important;
}

/* Force visibility for debugging */
.floating-cta .cta-options {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

@media (max-width: 600px) {
    .floating-cta {
        bottom: 10px;
        right: 10px;
    }
    .cta-toggle {
        width: 70px;
        height: 70px;
        margin-top: 8px;
    }
    .cta-toggle i {
        font-size: 1.8rem;
    }
    .cta-options {
        gap: 8px;
    }
}

/* About Us Page Styles */
.about-hero {
    padding: 160px 0 80px; /* Adjusted top padding for navbar height */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.company-overview {
    padding: 80px 0;
    background: #f8fafc;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #64748b;
}

.overview-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.expertise-section {
    padding: 80px 0;
}

.expertise-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.expertise-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.expertise-icon i {
    font-size: 2rem;
    color: white;
}

.expertise-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.expertise-card p {
    color: #64748b;
    line-height: 1.6;
}

.global-presence {
    padding: 80px 0;
    background: #f8fafc;
}

.global-presence h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.presence-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.country-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.country-flag {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.country-flag i {
    font-size: 1.5rem;
    color: white;
}

.country-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.country-card p {
    color: #64748b;
    line-height: 1.6;
}

.success-stories {
    padding: 80px 0;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.story-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
}

.story-location {
    background: #e2e8f0;
    color: #64748b;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.story-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.story-metrics span {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.team-section {
    padding: 80px 0;
    background: #f8fafc;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-avatar i {
    font-size: 2rem;
    color: white;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.team-member p {
    color: #64748b;
    line-height: 1.6;
}

.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Us Page */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-grid,
    .countries-grid,
    .stories-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .story-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .cta-toggle {
        width: 65px;
        height: 65px;
    }
    
    .cta-toggle i {
        font-size: 1.6rem;
    }
    
    .cta-option {
        min-width: 120px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .overview-text h2,
    .expertise-section h2,
    .global-presence h2,
    .success-stories h2,
    .team-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .floating-cta {
        bottom: 15px;
        right: 15px;
    }
    
    .cta-toggle {
        width: 60px;
        height: 60px;
    }
    
    .cta-toggle i {
        font-size: 1.4rem;
    }
    
    .cta-option {
        min-width: 100px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Blog Detail Page Styles */
.blog-detail {
    padding: 110px 0 40px; /* Adjusted top padding for shorter announcement bar */
    background: #fff;
}

.blog-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.95rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.blog-intro {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.blog-section {
    margin: 2rem 0;
    padding: 1rem 0;
}

.blog-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.75rem;
}

.blog-section p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.15);
    border-color: #2563eb;
}

.feature-item i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.15);
    border-color: #2563eb;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Implementation Steps */
.implementation-steps {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(37,99,235,0.1);
    border-color: #2563eb;
}

.step-number {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Success Stories */
.success-stories {
    margin: 2rem 0;
}

.story-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.story-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.1);
    border-color: #2563eb;
}

.story-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.story-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Trends List */
.trends-list {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.trends-list li {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.trends-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(37,99,235,0.1);
    border-color: #2563eb;
}

.trends-list li strong {
    color: #2563eb;
    font-weight: 600;
}

/* Getting Started */
.getting-started {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.15);
    border-color: #2563eb;
}

.step-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Blog CTA */
.blog-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 2rem 0;
}

.blog-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.blog-cta .btn {
    background: white;
    color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
} 

.cta-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 140px;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1001;
}

.cta-option:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-option.phone {
    color: #2563eb;
    border: 1px solid #2563eb;
}

.cta-option.whatsapp {
    color: #25d366;
    border: 1px solid #25d366;
}

.cta-option.email {
    color: #ea4335;
    border: 1px solid #ea4335;
}

.cta-option.calendar {
    color: #8b5cf6;
    border: 1px solid #8b5cf6;
}

/* Portfolio Styles */
.portfolio-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 50px; /* Account for announcement bar */
}

.portfolio-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.portfolio-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.case-studies {
    padding: 60px 0;
    background: #f8fafc;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-study-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-study-image {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.case-study-image i {
    font-size: 2rem;
    color: white;
}

.case-study-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.case-study-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.case-study-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.case-study-stats .stat {
    text-align: center;
}

.case-study-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.case-study-stats .stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

.case-study-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-study-features h4,
.case-study-benefits h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    margin-top: 20px;
}

.case-study-features ul,
.case-study-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.case-study-features li,
.case-study-benefits li {
    padding: 6px 0;
    color: #475569;
    position: relative;
    padding-left: 18px;
}

.case-study-features li::before,
.case-study-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Case Study Card Button Styling */
.case-study-card .btn {
    margin-top: 25px;
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Case Study Results Section */
.case-study-results {
    margin-top: 20px;
}

.case-study-results h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.portfolio-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.portfolio-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.portfolio-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Case Study Detail Pages */
.case-study-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 120px 0 80px;
}

.case-study-header-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.case-study-header-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.case-study-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.case-study-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.case-study-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.case-study-header-stats {
    display: flex;
    gap: 30px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.case-study-content {
    padding: 80px 0;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.case-study-section {
    margin-bottom: 50px;
}

.case-study-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.case-study-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 30px 0 15px;
}

.case-study-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 25px 0 15px;
}

.case-study-section p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-study-section ul {
    list-style: none;
    padding: 0;
}

.case-study-section li {
    padding: 10px 0;
    color: #475569;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.case-study-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

.case-study-section li strong {
    color: #1e293b;
    font-weight: 600;
}

/* Sidebar Styles */
.sidebar-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.project-details .detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.project-details .detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #64748b;
}

.detail-value {
    color: #1e293b;
    font-weight: 500;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.metric-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
}

.metric-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.3;
}

.testimonial {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.testimonial p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
}

.related-studies {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-study {
    display: block;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-study:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.related-study h4 {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.related-study p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.case-study-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.case-study-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.case-study-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.case-study-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .case-study-header-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .portfolio-hero-content h1,
    .case-study-header-text h1 {
        font-size: 2.5rem;
    }
    
    .case-study-header-stats {
        justify-content: center;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .case-study-card {
        padding: 25px;
    }
    
    .case-study-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .case-study-image {
        margin-bottom: 14px;
    }
    
    .case-study-subtitle {
        margin-bottom: 16px;
    }
    
    .case-study-features h4,
    .case-study-results h4 {
        margin-top: 18px;
    }
    
    .case-study-card .btn {
        margin-top: 20px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-cta .cta-buttons,
    .case-study-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .portfolio-cta {
        padding: 50px 0;
    }
    
    .case-studies {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .portfolio-hero-content h1,
    .case-study-header-text h1 {
        font-size: 2rem;
    }
    
    .case-study-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .case-study-header-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .case-study-card {
        padding: 20px;
    }
    
    .case-study-image {
        margin-bottom: 12px;
    }
    
    .case-study-subtitle {
        margin-bottom: 14px;
    }
    
    .case-study-features h4,
    .case-study-results h4 {
        margin-top: 16px;
    }
    
    .case-study-card .btn {
        margin-top: 18px;
    }
    
    .portfolio-cta {
        padding: 40px 0;
    }
    
    .case-studies {
        padding: 40px 0;
    }
    
    .case-studies-grid {
        gap: 20px;
    }
    
    .case-study-stats {
        gap: 10px;
    }
}

.cta-option i {
    font-size: 1.2rem;
    opacity: 1;
    visibility: visible;
}

.cta-option span {
    opacity: 1;
    visibility: visible;
    color: inherit;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-hero {
    padding: 160px 0 80px; /* Adjusted for announcement bar + navbar height */
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
    margin-top: 0;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.contact-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    color: #cbd5e1;
}

/* Enhanced Contact Section for Contact Page */
.contact .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact .contact-info h3 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact .contact-info p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact .contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    align-items: center;
}

.contact .contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact .contact-item i,
.contact .contact-item .contact-icon {
    font-size: 1.5rem;
    color: #2563eb;
    margin-right: 1rem;
    min-width: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact .contact-item .contact-icon {
    font-style: normal;
    font-size: 1.6rem;
    color: #2563eb;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(37, 99, 235, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Fallback icons if Font Awesome fails to load */
.contact .contact-item i.fa-phone::before {
    content: "📞";
}

.contact .contact-item i.fa-envelope::before {
    content: "✉️";
}

.contact .contact-item i.fa-map-marker-alt::before {
    content: "📍";
}

.contact .contact-item i.fa-clock::before {
    content: "🕒";
}

/* Alternative approach - use Unicode symbols directly */
.contact .contact-item i.fas.fa-phone:before {
    content: "\f095";
}

.contact .contact-item i.fas.fa-envelope:before {
    content: "\f0e0";
}

.contact .contact-item i.fas.fa-map-marker-alt:before {
    content: "\f3c5";
}

.contact .contact-item i.fas.fa-clock:before {
    content: "\f017";
}

.contact-text h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-text span {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
    display: block;
}

.contact .contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Ensure buttons are visible and properly styled */
.contact .contact-form .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.contact .contact-form .btn-primary {
    background: #3b82f6;
    color: white;
}

.contact .contact-form .btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.contact .contact-form .btn-secondary {
    background: #10b981;
    color: white;
}

.contact .contact-form .btn-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.contact .contact-form .btn i {
    font-size: 1.1rem;
}

.contact .contact-form h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.contact .form-group {
    margin-bottom: 20px;
}

.contact .form-group input,
.contact .form-group textarea,
.contact .form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact .form-group input:focus,
.contact .form-group textarea:focus,
.contact .form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    
    .contact .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact .contact-info h3 {
        font-size: 1.6rem;
    }
    
    .contact .contact-form {
        padding: 30px;
    }
    
    .contact .contact-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .contact .contact-form {
        padding: 20px;
    }
    
    .contact .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact .contact-item i,
    .contact .contact-item .contact-icon {
        margin: 0 auto 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        justify-content: center;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.success {
    background: #10b981;
}

.notification.error {
    background: #ef4444;
}

.notification.info {
    background: #3b82f6;
}

@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Policy Pages Styles */
.policy-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.policy-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.policy-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.policy-content {
    padding: 80px 0;
    background: #f8fafc;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.policy-section strong {
    color: #2d3748;
    font-weight: 600;
}

.contact-info {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Opt-out form styles */
.opt-out-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.method {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.method h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.method p {
    margin-bottom: 0;
    font-size: 1rem;
}

.opt-out-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
}

.opt-out-form .form-group {
    margin-bottom: 1.5rem;
}

.opt-out-form label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.opt-out-form input,
.opt-out-form select,
.opt-out-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.opt-out-form input:focus,
.opt-out-form select:focus,
.opt-out-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkmark {
    display: none;
}

.opt-out-form .btn {
    background: #667eea;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.opt-out-form .btn:hover {
    background: #5a67d8;
}

/* Responsive styles for policy pages */
@media (max-width: 768px) {
    .policy-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .policy-hero-content p {
        font-size: 1.1rem;
    }
    
    .policy-content {
        padding: 60px 0;
    }
    
    .policy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }
    
    .opt-out-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .opt-out-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-hero-content h1 {
        font-size: 2rem;
    }
    
    .policy-hero-content p {
        font-size: 1rem;
    }
    
    .policy-section {
        padding: 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
    
    .opt-out-form {
        padding: 1rem;
    }
    
    .opt-out-form .btn {
        width: 100%;
        padding: 1rem;
    }
}

/* Footer fixes for policy pages */
.footer {
    background: #1e293b !important;
    color: white !important;
    padding: 60px 0 20px !important;
}

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

.footer-section {
    min-width: 0;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* Fix logo overlap in footer */
.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: #2563eb;
}

.footer-logo .logo-image {
    height: 35px;
    width: auto;
    object-fit: contain;
    margin-right: 0.5rem;
    max-width: 100%;
}

/* Responsive footer for policy pages */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Documentation Page Styles */
.documentation-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.documentation-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.documentation-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.documentation-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.documentation-search input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.documentation-search button {
    padding: 15px 20px;
    background: #2563eb;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.documentation-search button:hover {
    background: #1d4ed8;
}

/* Documentation Navigation */
.doc-navigation {
    padding: 60px 0;
    background: #f8fafc;
}

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

.doc-nav-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.doc-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.doc-nav-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
    display: block;
}

.doc-nav-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.doc-nav-card p {
    color: #64748b;
    margin: 0;
}

/* Documentation Content */
.documentation-content {
    padding: 60px 0;
    background: white;
}

.documentation-content .container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.doc-sidebar {
    position: sticky;
    top: 100px;
}

.doc-toc {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.doc-toc h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.doc-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.doc-toc li {
    margin-bottom: 0.5rem;
}

.doc-toc a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.doc-toc a:hover {
    color: #2563eb;
}

.doc-main {
    max-width: 100%;
}

.doc-section {
    margin-bottom: 4rem;
}

.doc-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
    border-bottom: 3px solid #2563eb;
    padding-bottom: 0.5rem;
}

.doc-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 2rem;
}

.doc-subsection {
    margin-bottom: 3rem;
}

.doc-subsection h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.doc-subsection h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.requirement-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.requirement-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirement-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.requirement-card li {
    padding: 0.5rem 0;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}

.requirement-card li:last-child {
    border-bottom: none;
}

/* Installation Steps */
.installation-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.step-content p {
    color: #64748b;
    margin-bottom: 1rem;
}

/* Code Blocks */
.code-block {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.code-block code {
    color: #e2e8f0;
}

/* Feature Guide */
.feature-guide {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin: 1.5rem 0;
}

.feature-guide h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-guide ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.feature-guide li {
    margin-bottom: 0.5rem;
    color: #374151;
}

/* Tip and Warning Boxes */
.tip-box, .warning-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.tip-box {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.warning-box {
    background: #fef3c7;
    border: 1px solid #fde68a;
    color: #92400e;
}

.tip-box i, .warning-box i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Modules Documentation Grid */
.modules-doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.module-doc-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.module-doc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.module-doc-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.module-doc-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.module-doc-card ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.module-doc-card li {
    padding: 0.25rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.module-doc-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Configuration Section */
.config-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin: 2rem 0;
}

.config-item {
    margin-bottom: 2rem;
}

.config-item:last-child {
    margin-bottom: 0;
}

.config-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.config-item p {
    color: #64748b;
    margin-bottom: 1rem;
}

/* API Section */
.api-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin: 2rem 0;
}

.api-endpoint {
    margin-bottom: 2rem;
}

.api-endpoint h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

/* Troubleshooting Grid */
.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.trouble-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.trouble-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trouble-item p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.trouble-item p strong {
    color: #1e293b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .documentation-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .doc-sidebar {
        position: static;
        order: 2;
    }
    
    .doc-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .documentation-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .documentation-hero-content p {
        font-size: 1.1rem;
    }
    
    .documentation-search {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .documentation-search input,
    .documentation-search button {
        border-radius: 0;
    }
    
    .documentation-search input {
        border-radius: 12px 12px 0 0;
    }
    
    .documentation-search button {
        border-radius: 0 0 12px 12px;
    }
    
    .doc-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-doc-grid {
        grid-template-columns: 1fr;
    }
    
    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-number {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .documentation-hero-content h1 {
        font-size: 2rem;
    }
    
    .documentation-hero-content p {
        font-size: 1rem;
    }
    
    .doc-section h2 {
        font-size: 2rem;
    }
    
    .doc-subsection h3 {
        font-size: 1.5rem;
    }
    
    .feature-guide {
        padding: 1.5rem;
    }
    
    .tip-box, .warning-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Support Page Styles */
.support-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.support-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.support-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cbd5e1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.support-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.support-stats .stat-item {
    text-align: center;
}

.support-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.support-stats .stat-label {
    font-size: 1rem;
    color: #cbd5e1;
}

/* Support Channels */
.support-channels {
    padding: 80px 0;
    background: #f8fafc;
}

.support-channels h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.channel-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.channel-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.channel-icon i {
    font-size: 2rem;
    color: white;
}

.channel-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.channel-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.channel-details {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.channel-details p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #64748b;
}

.channel-details strong {
    color: #1e293b;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-question i {
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: none;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Troubleshooting Section */
.troubleshooting-section {
    padding: 80px 0;
    background: #f8fafc;
}

.troubleshooting-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.trouble-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.trouble-header {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trouble-header i {
    font-size: 1.5rem;
}

.trouble-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.trouble-content {
    padding: 1.5rem;
}

.trouble-content p {
    color: #64748b;
    margin-bottom: 1rem;
}

.trouble-content p strong {
    color: #1e293b;
}

.trouble-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.trouble-content li {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.trouble-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.trouble-actions .btn-secondary {
    background: #64748b;
    color: white;
    border: 2px solid #64748b;
}

.trouble-actions .btn-secondary:hover {
    background: #475569;
    border-color: #475569;
    color: white;
}

/* Training Section */
.training-section {
    padding: 80px 0;
    background: white;
}

.training-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.training-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.training-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.training-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.training-icon i {
    font-size: 1.8rem;
    color: white;
}

.training-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.training-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.training-card ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: left;
}

.training-card li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.training-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Contact Support Section */
.contact-support-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-support-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.contact-support-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-method i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-top: 0.2rem;
}

.contact-method h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.contact-method p {
    color: #64748b;
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.contact-support-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.contact-support-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.contact-support-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-support-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e293b;
}

.contact-support-form input,
.contact-support-form select,
.contact-support-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-support-form input:focus,
.contact-support-form select:focus,
.contact-support-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-support-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-support-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .support-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .support-hero-content p {
        font-size: 1.1rem;
    }
    
    .support-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
    
    .training-grid {
        grid-template-columns: 1fr;
    }
    
    .trouble-actions {
        flex-direction: column;
    }
    
    .contact-methods {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .support-hero-content h1 {
        font-size: 2rem;
    }
    
    .support-hero-content p {
        font-size: 1rem;
    }
    
    .support-stats .stat-number {
        font-size: 2rem;
    }
    
    .channel-card,
    .training-card {
        padding: 1.5rem;
    }
    
    .faq-question,
    .faq-answer {
        padding: 1rem;
    }
    
    .trouble-header,
    .trouble-content {
        padding: 1rem;
    }
    
    .contact-support-form {
        padding: 1.5rem;
    }
}

/* Training Page Styles */
.training-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.training-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.training-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.training-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.training-stats .stat-item {
    text-align: center;
}

.training-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 8px;
}

.training-stats .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.training-programs {
    padding: 80px 0;
    background: #f8fafc;
}

.training-programs h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-card.featured {
    border: 3px solid #fbbf24;
    transform: scale(1.05);
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fbbf24;
    color: #1e293b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.program-card p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.program-details {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #64748b;
}

.detail-item i {
    color: #667eea;
}

.program-topics {
    list-style: none;
    margin-bottom: 25px;
}

.program-topics li {
    padding: 8px 0;
    color: #475569;
    position: relative;
    padding-left: 20px;
}

.program-topics li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.program-price {
    text-align: center;
    margin-bottom: 25px;
}

.program-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.program-price .per-person {
    font-size: 0.875rem;
    color: #64748b;
    margin-left: 8px;
}

.training-schedule {
    padding: 80px 0;
    background: white;
}

.training-schedule h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.schedule-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-3px);
}

.schedule-date {
    text-align: center;
    min-width: 80px;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.date-month {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
}

.date-year {
    font-size: 0.875rem;
    color: #94a3b8;
}

.schedule-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.schedule-content p {
    color: #64748b;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.schedule-content p i {
    color: #667eea;
    margin-right: 8px;
    width: 16px;
}

.schedule-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 10px;
}

.schedule-status.available {
    background: #dcfce7;
    color: #166534;
}

.instructors-section {
    padding: 80px 0;
    background: #f8fafc;
}

.instructors-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.instructor-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
}

.instructor-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.instructor-avatar i {
    font-size: 2.5rem;
    color: white;
}

.instructor-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.instructor-title {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 15px;
}

.instructor-bio {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.instructor-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.expertise-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.training-benefits {
    padding: 80px 0;
    background: white;
}

.training-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

.registration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.registration-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Clinical Management Page Styles */
.clinical-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.clinical-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.clinical-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.clinical-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.clinical-stats .stat-item {
    text-align: center;
}

.clinical-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 8px;
}

.clinical-stats .stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.clinical-overview {
    padding: 80px 0;
    background: #f8fafc;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.overview-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #64748b;
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.overview-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #1e293b !important;
}

.overview-features .feature-item i {
    color: #667eea;
    font-size: 1.2rem;
    min-width: 1.2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.overview-features .feature-item span {
    color: #1e293b !important;
    line-height: 1.5;
    padding-top: 2px;
}

.patient-management,
.doctor-management,
.emr-section,
.invoicing-section,
.commission-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.management-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    color: white;
    font-size: 1.5rem;
}

.management-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.management-card ul {
    list-style: none;
    padding: 0;
}

.management-card li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.management-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.emr-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.emr-feature {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
}

.invoicing-grid,
.commission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.invoicing-card,
.commission-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.invoicing-card:hover,
.commission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.clinical-benefits {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    color: white;
    font-size: 1.8rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

.clinical-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .clinical-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .clinical-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .clinical-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .management-grid,
    .emr-features,
    .invoicing-grid,
    .commission-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .emr-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .clinical-hero-content h1 {
        font-size: 2rem;
    }
    
    .clinical-hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .management-card,
    .emr-feature,
    .invoicing-card,
    .commission-card,
    .benefit-card {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

.registration-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.registration-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.feature-item i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.feature-item span {
    color: white;
}

.registration-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.registration-form h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.registration-form .form-group {
    margin-bottom: 20px;
}

.registration-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    color: #1e293b;
    background-color: white;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.registration-form input::placeholder,
.registration-form textarea::placeholder {
    color: #9ca3af;
}

.registration-form .btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .registration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .training-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .training-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .instructors-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .program-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .training-hero-content h1 {
        font-size: 2rem;
    }
    
    .training-hero-content p {
        font-size: 1rem;
    }
    
    .program-card {
        padding: 25px;
    }
    
    .registration-form {
        padding: 25px;
    }
    
    .registration-text h2 {
        font-size: 2rem;
    }
}