:root {
            --primary-color: #2980b9;
            --secondary-color: #2c3e50;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --cta-bg: #e8f4fc;
        }
        
       .tagline {
            font-size: clamp(1em, 3vw, 1.2em);
            color: #000000;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .story-section {
            background-color: var(--light-bg);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 25px;
        }
        
        h2 {
            color: var(--primary-color);
            margin-top: 0;
            font-size: clamp(1.5em, 4vw, 2em);
        }
        
        .features {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 25px 0;
        }
        
        @media (min-width: 768px) {
            .features {
                flex-direction: row;
                flex-wrap: wrap;
            }
        }
        
        .feature-card {
            flex: 1 1 100%;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        @media (min-width: 600px) {
            .feature-card {
                flex: 1 1 calc(50% - 20px);
            }
        }
        
        @media (min-width: 992px) {
            .feature-card {
                flex: 1 1 calc(33.333% - 20px);
            }
        }
        
        .feature-card h3 {
            color: var(--secondary-color);
            margin-top: 0;
            font-size: 1.2em;
        }
        
        .cta {
            text-align: center;
            margin: 30px 0;
            padding: 20px;
            background-color: var(--cta-bg);
            border-radius: 8px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
            font-size: 1em;
        }
        
        .btn:hover, .btn:focus {
            background-color: #3498db;
        }
        
        /* Timeline adjustments for mobile */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 30px auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 2px;
            background-color: var(--primary-color);
            top: 0;
            bottom: 0;
            left: 20px; /* Moved to left for mobile */
            margin-left: -1px;
        }
        
        @media (min-width: 768px) {
            .timeline::after {
                left: 50%; /* Center on larger screens */
            }
        }
        
        .timeline-item {
            padding: 10px 0 10px 40px;
            position: relative;
            width: 100%;
            box-sizing: border-box;
            margin-bottom: 20px;
        }
        
        @media (min-width: 768px) {
            .timeline-item {
                width: 50%;
                padding: 10px 40px;
            }
            .left {
                left: 0;
                text-align: right;
                padding-right: 40px;
                padding-left: 0;
            }
            .right {
                left: 50%;
                padding-left: 40px;
                padding-right: 0;
            }
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: white;
            border: 4px solid var(--primary-color);
            border-radius: 50%;
            top: 15px;
            left: 9px; /* Adjusted for mobile */
            z-index: 1;
        }
        
        @media (min-width: 768px) {
            .timeline-item::after {
                left: auto;
                right: -12px;
            }
            .right::after {
                left: -12px;
            }
        }
        
        .timeline-content {
            padding: 15px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        /* Mobile-first paragraph spacing */
        p {
            margin-bottom: 1.2em;
            font-size: clamp(0.95em, 3vw, 1em);
        }
        
        /* Ensure images don't overflow */
        img {
            max-width: 100%;
            height: auto;
        }

.content {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.content-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.content-card h1 {
	font-size: 1.5em;
	text-align: center;
	padding-bottom: 20px;
}

.content-content {
    margin-bottom: 20px;
    color: var(--dark);
}

.content-content p {
    margin-bottom: 10px;
}