  .subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 2rem;
        }

        .cta-button {
            background-color:#b10a00;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin: 10px;
        
        }

      

        .section {
            padding: 3rem 0;
            border-bottom: 1px solid #ecf0f1;
        }

        .section:last-child {
            border-bottom: none;
        }

        h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            /* display: flex;
            align-items: center;
            gap: 15px; */
        }

        h2 i {
            color: #e74c3c;
            font-size: 1.8rem;
        }

        h3 {
            font-size: 1.5rem;
            color: #34495e;
            margin: 1.5rem 0 1rem 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        h3 i {
            color: #e74c3c;
            font-size: 1.3rem;
        }

        p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: #555;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 4px solid #e74c3c;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .card h4 {
            color: #2c3e50;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .card h4 i {
            color: #e74c3c;
        }

        .highlight-box {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            border: 1px solid #ecf0f1;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
          
        }
        .investmentGraphSection{display: flex;display: -webkit-flex;justify-content: space-between;}
        .investmentGraphSection .contentBox{width:48%;}
        .investmentGraphSection .imgBox{width:48%;}
        .investmentGraphSection .imgBox img{height:100%;width:100%;}
       

        .stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 2rem 0;
        }

        .stat {
            text-align: center;
            padding: 1rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #e74c3c;
            display: block;
        }

        .stat-label {
            color: #7f8c8d;
            font-size: 1rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-list li i {
            color: #e74c3c;
            width: 20px;
        }
/* 
        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .faq-question {
            background: #f8f9fa;
            padding: 1.5rem;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background: #e9ecef;
        }

        .faq-question i {
            color: #e74c3c;
        }

        .faq-answer {
            padding: 1.5rem;
            display: none;
            color: #555;
        }

        .faq-answer.active {
            display: block;
        } */

        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .location-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .location-card:hover {
            transform: translateY(-3px);
        }

        .location-card h5 {
            color: #2c3e50;
            margin: 1rem 0 0.5rem 0;
            font-size: 1.2rem;
        }

        .location-card i {
            font-size: 2rem;
            color: #e74c3c;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .grid {
                grid-template-columns: 1fr;
            }
            
            .stats {
                flex-direction: column;
            }
        }