/* About Page Specific Styles */
        :root {
            --gold-primary: #D4AF37;
            --gold-secondary: #B8860B;
            --gold-light: #F5E7A1;
            --gold-lighter: #FCF6E2;
            --white-primary: #FFFFFF;
            --white-secondary: #F8F8F8;
            --text-dark: #333333;
            --text-medium: #555555;
            --text-light: #777777;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --shadow-light: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
            background: #f7f7f7;
            margin: 0;
            padding: 0;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Poppins', 'Playfair Display', serif;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 20px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gold-primary);
        }
        
        .text-center h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        p {
            margin-bottom: 1.5rem;
            color: var(--text-medium);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background: var(--gold-primary);
            color: var(--white-primary);
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }
        
        .btn:hover {
            background: var(--gold-secondary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }
        
        .section {
            padding: 100px 0;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Header Styles */
        header {
            background: rgb(255, 255, 255);
            box-shadow: var(--shadow);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            margin: 0;
            color: var(--gold-primary);
        }
        
        .logo span {
            color: var(--text-dark);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--gold-primary);
            transition: width 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--gold-primary);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* About Hero */
        .about-hero {
            height: 60vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            color: var(--white-primary);
            text-align: center;
            margin-top: 70px;
        }
        
        .about-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .about-hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: var(--white-primary);
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .about-hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: var(--white-primary);
        }
        
        /* Business Description */
        .business-description {
            background: var(--white-primary);
        }
        
        .business-description .container {
            max-width: 900px;
        }
        
        .highlight-box {
            background: var(--gold-lighter);
            border-left: 5px solid var(--gold-primary);
            padding: 30px;
            margin: 40px 0;
            border-radius: 0 10px 10px 0;
        }
        
        /* Services Section */
        .services-section {
            background: var(--gold-lighter);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background: var(--white-primary);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: transform 0.3s ease;
            border-top: 4px solid var(--gold-primary);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-content {
            padding: 30px;
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--gold-primary);
            margin-bottom: 20px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--gold-primary);
        }
        
        /* Strategy Section */
        .strategy-section {
            background: var(--white-primary);
        }
        
        .strategy-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .strategy-list {
            list-style-type: none;
            margin: 30px 0;
        }
        
        .strategy-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .strategy-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gold-primary);
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        /* Skills Section */
        .skills-section {
            background: linear-gradient(to right, var(--white-primary) 50%, var(--gold-lighter) 50%);
        }
        
        .skills-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .skills-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .skills-image img {
            width: 100%;
            display: block;
        }
        
        /* Ownership Section */
        .ownership-section {
            background: var(--white-primary);
        }
        
        .leadership-card {
            background: var(--gold-lighter);
            border-radius: 10px;
            padding: 40px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: var(--shadow-light);
            text-align: center;
        }
        
        .leader-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 30px;
            border: 5px solid var(--gold-primary);
        }
        
        .leader-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .leadership-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            box-shadow: var(--shadow-light);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .leadership-table th,
        .leadership-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .leadership-table th {
            background: var(--gold-primary);
            color: var(--white-primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .leadership-table tr:nth-child(even) {
            background: var(--gold-lighter);
        }
        
        /* Contribution Section */
        .contribution-section {
            background: linear-gradient(to right, var(--gold-lighter) 50%, var(--white-primary) 50%);
        }
        
        .contribution-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .contribution-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .contribution-image img {
            width: 100%;
            display: block;
        }
        
        .contribution-content h2 {
            margin-bottom: 30px;
        }
        
        /* Empowerment Section */
        .empowerment-section {
            background: var(--white-primary);
            text-align: center;
        }
        
        .empowerment-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .empowerment-stats {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin: 50px 0;
        }
        
        .stat-card {
            background: var(--gold-lighter);
            padding: 30px;
            border-radius: 10px;
            min-width: 200px;
            box-shadow: var(--shadow-light);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold-primary);
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }
        
        .stat-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        
        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--white-primary);
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            color: var(--gold-primary);
            margin-bottom: 15px;
        }
        
        .footer-links h3 {
            color: var(--gold-primary);
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gold-primary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: var(--white-primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: var(--gold-primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .skills-container,
            .contribution-container {
                grid-template-columns: 1fr;
            }
            
            .skills-image,
            .contribution-image {
                order: -1;
            }
            
            .about-hero h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white-primary);
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: all 0.4s ease;
            }
            
            nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px 0;
            }
            
            nav ul li {
                margin: 0;
            }
            
            nav ul li a {
                display: block;
                padding: 15px 30px;
            }
            
            .about-hero {
                height: 50vh;
                padding-top: 90px;
            }
            
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .about-hero p {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .empowerment-stats {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-card {
                width: 100%;
                max-width: 300px;
            }
        }