        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #fff;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== NAVIGATION STYLES ===== */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
            padding: 5px 0;
        }

        .navbar {
            padding: 0 2rem;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            transition: height 0.3s ease;
        }

        .header.scrolled .nav-container {
            height: 70px;
        }

        /* Logo Styles */
        .logo-link {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: all 0.3s ease;
        }

        .logo-text {
            font-size: 2.2rem;
            font-weight: bold;
            color: #2c5aa0;
            letter-spacing: -1px;
            line-height: 1;
            transition: all 0.3s ease;
        }

        .logo-subtitle {
            font-size: 0.75rem;
            color: #666;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-top: 2px;
        }

        .header.scrolled .logo-text {
            font-size: 1.8rem;
        }

        .header.scrolled .logo-subtitle {
            font-size: 0.65rem;
        }

        /* Navigation Menu */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 1rem;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            white-space: nowrap;
        }

        .nav-link i {
            font-size: 0.9rem;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .nav-link:hover {
            color: #2c5aa0;
            background: rgba(44, 90, 160, 0.1);
        }

        .nav-link:hover i {
            opacity: 1;
        }

        .nav-link.active {
            color: #2c5aa0;
            font-weight: 600;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: #2c5aa0;
            border-radius: 50%;
        }

        /* Navigation Actions */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-left: 2rem;
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .phone-cta {
            background: transparent;
            color: #2c5aa0;
            border: 2px solid #2c5aa0;
        }

        .phone-cta:hover {
            background: #2c5aa0;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
        }

        .booking-cta {
            background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
            color: white;
            border: 2px solid transparent;
        }

        .booking-cta:hover {
            background: linear-gradient(135deg, #3a6bc0, #4a7bd0);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
        }

        /* Mobile Menu Toggle */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 8px;
            margin-left: 15px;
        }

        .bar {
            width: 25px;
            height: 3px;
            background: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Mobile Overlay */
        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-overlay.active {
            display: block;
            opacity: 1;
        }

        /* Mobile Responsive Styles */
        @media screen and (max-width: 1024px) {
            .navbar {
                padding: 0 1.5rem;
            }
            
            .nav-link {
                padding: 1rem 1.2rem;
                font-size: 0.95rem;
            }
            
            .nav-actions {
                margin-left: 1rem;
            }
            
            .nav-cta {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
        }

        @media screen and (max-width: 768px) {
            .navbar {
                padding: 0 1rem;
            }

            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 280px;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                padding: 2rem 0;
                gap: 0;
                transition: left 0.3s ease;
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
                z-index: 999;
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                display: flex;
                align-items: center;
                padding: 1.2rem 2rem;
                border-bottom: 1px solid #f0f0f0;
                width: 100%;
                font-size: 1.1rem;
                border-radius: 0;
                gap: 12px;
            }

            .nav-link.active::after {
                left: 20px;
                transform: none;
                bottom: 50%;
                margin-bottom: -3px;
            }

            .nav-actions {
                display: none;
            }

            .mobile-actions {
                display: flex;
                flex-direction: column;
                gap: 10px;
                padding: 2rem;
                margin-top: auto;
                border-top: 1px solid #f0f0f0;
            }

            .mobile-actions .nav-cta {
                justify-content: center;
                text-align: center;
            }

            /* Hamburger Animation */
            .hamburger.active .bar:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
        }

        @media screen and (max-width: 480px) {
            .nav-container {
                height: 70px;
            }
            
            .header.scrolled .nav-container {
                height: 60px;
            }
            
            .logo-text {
                font-size: 1.8rem;
            }
            
            .logo-subtitle {
                font-size: 0.7rem;
            }
            
            .header.scrolled .logo-text {
                font-size: 1.6rem;
            }
            
            .nav-menu {
                top: 70px;
                height: calc(100vh - 70px);
                width: 100%;
            }
        }

        /* ===== FOOTER STYLES ===== */
        .footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #2c5aa0, transparent);
        }

        /* Main Footer Content */
        .footer-main {
            padding: 60px 0 40px;
            position: relative;
        }

        .footer-main::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 5%;
            right: 5%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
            gap: 40px;
            align-items: start;
        }

        /* Footer Columns */
        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .brand-column {
            grid-column: span 1;
        }

        /* Brand Section */
        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo .logo-link {
            align-items: flex-start;
        }

        .footer-logo .logo-text {
            color: #2c5aa0;
            font-size: 2.2rem;
        }

        .footer-logo .logo-subtitle {
            color: #ecf0f1;
        }

        .footer-description {
            color: #bdc3c7;
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link:hover {
            background: #2c5aa0;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
        }

        /* Column Titles */
        .column-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ecf0f1;
            position: relative;
            padding-bottom: 10px;
        }

        .column-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: #2c5aa0;
            border-radius: 1px;
        }

        /* Footer Links */
        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a i {
            font-size: 0.8rem;
            width: 16px;
            text-align: center;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover {
            color: #2c5aa0;
            transform: translateX(5px);
        }

        .footer-links a:hover i {
            opacity: 1;
        }

        /* Contact Info */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-icon {
            color: #2c5aa0;
            font-size: 1.1rem;
            margin-top: 2px;
            flex-shrink: 0;
            width: 20px;
            text-align: center;
        }

        .contact-details strong {
            display: block;
            color: #ecf0f1;
            font-size: 0.9rem;
            margin-bottom: 2px;
        }

        .contact-details p {
            color: #bdc3c7;
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.4;
        }

        .contact-details a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: #2c5aa0;
        }

        /* Hours Info */
        .hours-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 30px;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hours-item:last-child {
            border-bottom: none;
        }

        .day {
            color: #ecf0f1;
            font-size: 0.9rem;
        }

        .time {
            color: #2c5aa0;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .hours-note {
            background: rgba(44, 90, 160, 0.2);
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 0.85rem;
            color: #bdc3c7;
            margin-top: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hours-note i {
            color: #2c5aa0;
        }

        /* Newsletter Section */
        .newsletter-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .newsletter-section h4 {
            font-size: 1.1rem;
            color: #ecf0f1;
            margin-bottom: 5px;
        }

        .newsletter-section p {
            color: #bdc3c7;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }

        .newsletter-form {
            margin-top: 15px;
        }

        .input-group {
            display: flex;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .input-group:focus-within {
            border-color: #2c5aa0;
            box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.2);
        }

        .input-group input {
            flex: 1;
            border: none;
            padding: 12px 15px;
            font-size: 0.9rem;
            background: transparent;
            outline: none;
            color: white;
        }

        .input-group input::placeholder {
            color: #95a5a6;
        }

        .newsletter-btn {
            background: #2c5aa0;
            border: none;
            color: white;
            padding: 12px 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .newsletter-btn:hover {
            background: #3a6bc0;
            transform: scale(1.05);
        }

        .newsletter-message {
            margin-top: 8px;
            font-size: 0.8rem;
            min-height: 16px;
            text-align: center;
        }

        .newsletter-message.success {
            color: #27ae60;
        }

        .newsletter-message.error {
            color: #e74c3c;
        }

        /* Footer Bottom */
        .footer-bottom {
            padding: 25px 0;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .copyright p {
            color: #95a5a6;
            font-size: 0.9rem;
            margin: 0;
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
        }

        .footer-bottom-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .footer-bottom-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #2c5aa0;
            transition: width 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #2c5aa0;
        }

        .footer-bottom-links a:hover::after {
            width: 100%;
        }

        .payment-methods {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #bdc3c7;
            font-size: 0.85rem;
        }

        .payment-icons {
            display: flex;
            gap: 8px;
        }

        .payment-icons i {
            font-size: 1.4rem;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .payment-icons i:hover {
            opacity: 1;
            transform: translateY(-2px);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(44, 90, 160, 0.6);
        }

        /* Quick Action Buttons */
        .quick-actions {
            position: fixed;
            bottom: 30px;
            left: 30px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 1000;
        }

        .quick-action {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .quick-action::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            border-radius: 50%;
            z-index: -1;
        }

        .quick-action.phone {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
        }

        .quick-action.location {
            background: linear-gradient(135deg, #e74c3c, #e67e22);
        }

        .quick-action.message {
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
        }

        .quick-action.booking {
            background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
        }

        .quick-action:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        .action-tooltip {
            position: absolute;
            right: 65px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .quick-action:hover .action-tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        /* Footer Responsive Design */
        @media screen and (max-width: 1200px) {
            .footer-content {
                grid-template-columns: 2fr 1fr 1fr 1.5fr;
                gap: 30px;
            }
            
            .footer-column:last-child {
                grid-column: 1 / -1;
                margin-top: 20px;
            }
            
            .hours-info {
                margin-bottom: 0;
            }
        }

        @media screen and (max-width: 968px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            
            .brand-column {
                grid-column: 1 / -1;
                text-align: center;
                align-items: center;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .column-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-links a:hover {
                transform: none;
            }
        }

        @media screen and (max-width: 768px) {
            .footer-main {
                padding: 40px 0 30px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .contact-item {
                justify-content: center;
                text-align: center;
            }
            
            .hours-item {
                justify-content: center;
                gap: 15px;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .footer-bottom-links {
                order: -1;
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            
            .payment-methods {
                flex-direction: column;
                gap: 10px;
            }
            
            .quick-actions {
                left: 15px;
                bottom: 15px;
            }
            
            .back-to-top {
                right: 15px;
                bottom: 15px;
            }
            
            .quick-action,
            .back-to-top {
                width: 45px;
                height: 45px;
            }
            
            .action-tooltip {
                display: none;
            }
        }

        @media screen and (max-width: 480px) {
            .footer-main {
                padding: 30px 0 20px;
            }
            
            .footer-logo .logo-text {
                font-size: 1.8rem;
            }
            
            .social-links {
                gap: 8px;
            }
            
            .social-link {
                width: 38px;
                height: 38px;
            }
            
            .footer-bottom-links {
                flex-direction: column;
                gap: 10px;
            }
            
            .input-group {
                flex-direction: column;
            }
            
            .input-group input {
                border-radius: 8px 8px 0 0;
            }
            
            .newsletter-btn {
                border-radius: 0 0 8px 8px;
            }
        }

        /* Demo Content Styles */
        .main-content {
            margin-top: 80px;
            min-height: 200vh;
            background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .hero-section {
            background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero-section p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .content-section {
            padding: 80px 0;
            text-align: center;
        }

        .content-section h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .content-section p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

/* Story Content Layout */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

/* Section Header */
.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
    border-radius: 2px;
}

.section-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #2c5aa0, transparent);
    margin-top: 20px;
}

/* Story Text Content */
.story-text {
    padding-right: 20px;
}

.story-intro {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 300;
    border-left: 4px solid #2c5aa0;
    padding-left: 20px;
}

.year-highlight {
    font-weight: 700;
    color: #2c5aa0;
    background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-details {
    margin-bottom: 40px;
}

.story-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

/* Founder Quote */
.founder-quote {
    background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.founder-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/water-texture.png') center/cover;
    opacity: 0.1;
}

.quote-content {
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    display: block;
}

.founder-quote blockquote {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.quote-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.signature-image {
    height: 40px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

/* Story Milestones */
.story-milestones {
    margin-top: 50px;
}

.story-milestones h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.milestones-timeline {
    position: relative;
}

.milestones-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #2c5aa0, #3a6bc0);
}

.milestone-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.milestone-year {
    background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.milestone-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.milestone-content h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.milestone-content p {
    color: #666;
    line-height: 1.6;
}

/* Story Visual Content */
.story-visual {
    position: relative;
}

.visual-container {
    position: sticky;
    top: 100px;
}

/* Main Image */
.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.story-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.main-image:hover .story-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px 20px 20px;
    color: white;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.overlay-content i {
    font-size: 1.2rem;
    color: #2c5aa0;
}

/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.15);
    border-color: #2c5aa0;
}

.stat-icon {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Values Display */
.values-display {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.values-display h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.value-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.value-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Story CTA */
.story-cta {
    background: linear-gradient(135deg, #2c5aa0, #3a6bc0);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.story-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/water-droplet-pattern.svg') center/cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: white;
    color: #2c5aa0;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-2px);
}

/* Background Elements */
.water-droplet {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(44, 90, 160, 0.1), transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.droplet-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.droplet-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 8%;
    animation-delay: 2s;
}

.droplet-3 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 90%;
    animation-delay: 4s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text {
        padding-right: 0;
    }
    
    .visual-container {
        position: static;
    }
    
    .stats-cards,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .our-story {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .story-intro {
        font-size: 1.2rem;
    }
    
    .founder-quote {
        padding: 30px 20px;
    }
    
    .founder-quote blockquote {
        font-size: 1.1rem;
    }
    
    .quote-author {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .milestones-timeline::before {
        left: 25px;
    }
    
    .milestone-year {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
        margin-right: 20px;
    }
    
    .story-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 250px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .story-intro {
        font-size: 1.1rem;
        border-left: 3px solid #2c5aa0;
        padding-left: 15px;
    }
    
    .stats-cards,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .values-display {
        padding: 20px;
    }
    
    .milestone-content {
        padding: 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}