   .section-title {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .section-subtitle {
            font-size: 20px;
            color: #f86d08;
            margin-bottom: 15px;
            text-align: center;
            font-weight: 600;
        }

        .content-section {
            padding: 60px 20px;
            position: relative;
            margin: 20px 0;
            border-radius: 20px;
            overflow: hidden;
        }

        .content-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: -1;
        }

        .content-container {
            max-width: 1000px;
            margin: 0 auto;
            color: white;
        }

        .text-content {
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

     .cta-button {
            background-color: white;
            color: #002c49;
            border: none;
            border-radius: 25px;
            padding: 12px 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            
            white-space: normal; 
            word-break: break-word; 
            max-width: 100%; 
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 5px; 
            padding: 12px 15px; 

        }

  
        .cta-button:hover {
            background-color: #f86d08;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .service-card {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.15);
        }

        .service-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #f86d08;
        }

        .service-description {
            margin-bottom: 20px;
        }

        .service-features {
            margin-bottom: 20px;
        }

        .service-feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .service-feature i {
            color: #f86d08;
            margin-right: 10px;
        }

        .team-member {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 40px;
        }

        .team-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid #f86d08;
        }

        .team-name {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #f86d08;
        }

        .team-role {
            font-size: 16px;
            margin-bottom: 10px;
            color: #ccc;
        }

        .team-bio {
            text-align: center;
            max-width: 600px;
        }

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 20px;
        }

        .faq-question {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #f86d08;
        }

        .faq-answer {
            line-height: 1.6;
        }

        .pricing-card {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
        }

        .pricing-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #f86d08;
        }

        .pricing-description {
            margin-bottom: 20px;
            color: #eee;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .pricing-feature i {
            color: #f86d08;
            margin-right: 10px;
        }

        .emoji-icon {
            font-size: 24px;
            margin-right: 10px;
        }

        .two-column {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .column {
            flex: 1;
            min-width: 300px;
        }

        @media (max-width: 768px) {
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .two-column {
                flex-direction: column;
            }
        }


