* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            color: #333;
            overflow-x: hidden;
        }

        [data-theme="dark"] {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: #ecf0f1;
        }

        .theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            padding: 10px 15px;
            border-radius: 25px;
            cursor: pointer;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        [data-theme="dark"] .theme-toggle {
            background: rgba(0, 0, 0, 0.7);
            color: white;
        }

        .floating-shapes {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 100px;
            height: 100px;
            top: 40%;
            left: 70%;
            animation-delay: 4s;
        }

        .shape:nth-child(4) {
            width: 40px;
            height: 40px;
            top: 80%;
            left: 20%;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .poster-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .main-content {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        [data-theme="dark"] .main-content {
            background: rgba(0, 0, 0, 0.8);
            color: #ecf0f1;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
        }

        .title {
            font-size: 3rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        [data-theme="dark"] .title {
            color: #ecf0f1;
            -webkit-text-fill-color: #ecf0f1;
        }

        .subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }


        .hero-image {
            height: 300px;
            margin-bottom: 30px;
        }

        .connection-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 50px 0;
            gap: 30px;
            flex-wrap: wrap;
        }

        .wellness-circle, .career-circle {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: bold;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .wellness-circle {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
        }

        .career-circle {
            background: linear-gradient(135deg, #4834d4, #686de0);
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .connection-arrow {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            position: relative;
            border-radius: 2px;
        }

        .connection-arrow::after {
            content: '';
            position: absolute;
            right: -10px;
            top: -8px;
            width: 0;
            height: 0;
            border-left: 20px solid #764ba2;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 50px 0;
        }

        .impact-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;
            border-left: 5px solid #667eea;
        }

        [data-theme="dark"] .impact-card {
            background: #2c3e50;
            color: #ecf0f1;
        }

        .impact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .impact-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .impact-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        [data-theme="dark"] .impact-title {
            color: #ecf0f1;
        }

        .impact-description {
            color: #7f8c8d;
            line-height: 1.6;
        }

        [data-theme="dark"] .impact-description {
            color: #bdc3c7;
        }

        .key-areas {
            margin: 50px 0;
        }

        .key-areas h2 {
            text-align: center;
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 30px;
        }

        [data-theme="dark"] .key-areas h2 {
            color: #ecf0f1;
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .area-item {
            background: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        [data-theme="dark"] .area-item {
            background: #2c3e50;
            color: #ecf0f1;
        }

        .area-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .area-emoji {
            font-size: 2.5rem;
            display: block;
            margin-bottom: 10px;
        }

        .area-text {
            font-weight: bold;
            color: #2c3e50;
        }

        [data-theme="dark"] .area-text {
            color: #ecf0f1;
        }

        .call-to-action {
            text-align: center;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin-top: 50px;
        }

        .cta-title {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .cta-text {
            font-size: 1.1rem;
            margin-bottom: 25px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: #667eea;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .Location1 {
            border-radius: 15px;
            border-style: solid dashed;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

            margin-bottom: 30px;
        }

        img,
.Location1,
.Location2,
.Location3,
.Location4 {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive footer and images for small screens */
@media (max-width: 400px) {
    .footer {
        padding: 10px 2px;
        font-size: 0.85rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 4px;
    }
    .footer-link {
        display: block;
        margin: 6px 0 0 0;
        font-size: 0.9em;
    }
    .main-content {
        padding: 10px;
    }
}

        @media (max-width: 768px) {
            .title {
                font-size: 2rem;
            }

            .connection-visual {
                flex-direction: column;
            }

            .connection-arrow {
                transform: rotate(90deg);
            }

            .impact-grid {
                grid-template-columns: 1fr;
            }

            .areas-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
        }

        .footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-family: 'Segoe UI', Arial, sans-serif;
    z-index: 100;
}

.footer-link {
    color: #ffee8d;
    margin-left: 12px;
    text-decoration: none;
    font-weight: bold;
    border: #ff9d9d 1px;
}

.footer-link:hover {
    text-decoration: underline;
}
