<style>
 * 		{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Georgia', serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            color: #ffffff;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 40px 20px;
        }
        
        .hero::before {
            content: '♪';
            position: absolute;
            font-size: 400px;
            color: #D4AF37;
            opacity: 0.03;
            top: -100px;
            right: -100px;
            font-family: serif;
        }
        
        .hero-content {
            max-width: 1200px;
            text-align: center;
            z-index: 2;
        }
		
		 .logo-section {
            margin-bottom: 20px;
        }
		
		.avatar {
		border: 2px solid #fff;
		width: 150px;
		height: 150px;
		border-radius: 50%;
		position: relative;
		}
             
        .hexagon-logo {
            width: 120px;
            height: 120px;
            background-color: rgba(139, 38, 53, 0.2);
            clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
            border: 2px solid #D4AF37;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hexagon-logo-inner {
            text-align: center;
            color: #ffffff;
            font-size: 11px;
            letter-spacing: 1px;
            padding: 20px;
        }
        
        .hero h1 {
            font-size: 72px;
            letter-spacing: 6px;
            margin-bottom: 10px;
            font-weight: 300;
            text-transform: uppercase;
        }
        
        .hero-tagline {
            font-size: 28px;
            color: #8B2635;
            letter-spacing: 3px;
            margin-bottom: 20px;
        }
        
        .hero-description {
            font-size: 20px;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 50px;
            color: #e0e0e0;
            font-family: 'Arial', sans-serif;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 18px 40px;
            font-size: 16px;
            text-decoration: none;
            border-radius: 0;
            transition: all 0.3s ease;
            font-family: 'Georgia', serif;
            letter-spacing: 1px;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary {
            background-color: #8B2635;
            color: #ffffff;
            border: 2px solid #8B2635;
        }
        
        .btn-primary:hover {
            background-color: transparent;
            border-color: #8B2635;
        }
        
        .btn-secondary {
            background-color: transparent;
            color: #D4AF37;
            border: 2px solid #D4AF37;
        }
        
        .btn-secondary:hover {
            background-color: #D4AF37;
            color: #000000;
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            color: #D4AF37;
            font-size: 14px;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }
        
        /* Mission Section */
        .mission {
            padding: 100px 20px;
            background-color: #ffffff;
        }
        
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 48px;
            text-align: center;
            margin-bottom: 20px;
            color: #000000;
            letter-spacing: 2px;
        }
        
        .section-subtitle {
            font-size: 20px;
            text-align: center;
            color: #8B2635;
            margin-bottom: 60px;
            font-style: italic;
        }
        
        .mission-content {
            font-size: 18px;
            line-height: 2;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            font-family: 'Arial', sans-serif;
            color: #333;
        }
        
        /* Three Pillars Section */
        .pillars {
            padding: 100px 20px;
            background: linear-gradient(to bottom, #f8f8f8 0%, #ffffff 100%);
        }
        
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-top: 60px;
        }
        
        .pillar {
            text-align: center;
            padding: 40px;
        }
        
        .pillar-icon {
            width: 100px;
            height: 100px;
            background-color: rgba(139, 38, 53, 0.1);
            clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: #8B2635;
            transition: all 0.3s ease;
        }
        
        .pillar:hover .pillar-icon {
            background-color: #8B2635;
            color: #ffffff;
            transform: scale(1.1);
        }
        
        .pillar h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #000000;
            letter-spacing: 2px;
        }
        
        .pillar p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            font-family: 'Arial', sans-serif;
        }
        
        /* Who We Serve Section */
        .who-we-serve {
            padding: 100px 20px;
            background-color: #000000;
            color: #ffffff;
        }
        
        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .audience-card {
            background-color: #1a1a1a;
            padding: 40px 30px;
            border: 1px solid #333;
            transition: all 0.3s ease;
        }
        
        .audience-card:hover {
            border-color: #D4AF37;
            transform: translateY(-5px);
        }
        
        .audience-card h4 {
            font-size: 24px;
            color: #D4AF37;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }
        
        .audience-card p {
            font-size: 15px;
            line-height: 1.8;
            color: #cccccc;
            font-family: 'Arial', sans-serif;
        }
        
        /* Story Section */
        .story {
            padding: 100px 20px;
            background: linear-gradient(135deg, #8B2635 0%, #6B1E2A 100%);
            color: #ffffff;
            position: relative;
        }
        
        .story::before {
            content: '♫';
            position: absolute;
            font-size: 300px;
            color: rgba(255, 255, 255, 0.03);
            bottom: -50px;
            left: -50px;
        }
        
        .story-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .story h2 {
            font-size: 48px;
            margin-bottom: 40px;
            text-align: center;
            letter-spacing: 2px;
        }
        
        .story-text {
            font-size: 18px;
            line-height: 2;
            margin-bottom: 30px;
            font-family: 'Arial', sans-serif;
        }
        
        .story-highlight {
            font-size: 22px;
            font-style: italic;
            text-align: center;
            margin: 40px 0;
            color: #D4AF37;
            line-height: 1.8;
        }
        
        /* CTA Section */
        .final-cta {
            padding: 100px 20px;
            background-color: #ffffff;
            text-align: center;
        }
        
        .final-cta h2 {
            font-size: 48px;
            margin-bottom: 30px;
            color: #000000;
            letter-spacing: 2px;
        }
        
        .final-cta p {
            font-size: 20px;
            margin-bottom: 50px;
            color: #666;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
            font-family: 'Arial', sans-serif;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 20px;
            background-color: #f8f8f8;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 40px auto 0;
        }
        
        .contact-card {
            background-color: #ffffff;
            padding: 40px;
            text-align: center;
            border: 1px solid #e0e0e0;
        }
        
        .contact-card h4 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #8B2635;
        }
        
        .contact-card p {
            font-size: 16px;
            color: #666;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }
        
        .contact-card a {
            color: #8B2635;
            text-decoration: none;
            font-weight: bold;
        }
        
        .contact-card a:hover {
            color: #D4AF37;
        }
        
        /* Footer */
        footer {
            background-color: #000000;
            color: #ffffff;
            padding: 40px 20px;
            text-align: center;
        }
        
        footer p {
            font-size: 14px;
            color: #999;
            font-family: 'Arial', sans-serif;
        }
        
        .footer-links {
            margin-top: 20px;
        }
        
        .footer-links a {
            color: #D4AF37;
            text-decoration: none;
            margin: 0 15px;
            font-size: 14px;
        }
        
        .footer-links a:hover {
            color: #ffffff;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 42px;
            }
            
            .hero-tagline {
                font-size: 20px;
            }
            
            .hero-description {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .pillars-grid,
            .audience-grid {
                grid-template-columns: 1fr;
            }
        }
</style>