        /* Company Overview Section */
        .company-overview {
            background: white;
            padding: 60px;
            border-radius: 10px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid #2c3e50;
            position: relative;
        }

        .company-overview:before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 1px solid #e63946;
            border-radius: 8px;
            pointer-events: none;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #2c3e50;
            position: relative;
            display: inline-block;
            text-align: center;
            width: 100%;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: #e63946;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .company-info {
            margin-bottom: 30px;
        }

        .company-info p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .highlight-box {
            background: #f8f9fa;
            border-left: 4px solid #e63946;
            padding: 20px;
            margin: 25px 0;
            border-radius: 4px;
        }

        .highlight-box h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .highlight-box ul {
            padding-left: 20px;
        }

        .highlight-box li {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        /* Team Section - Made Responsive */
        .team-section {
            background: white;
            padding: 60px;
            border-radius: 10px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
            border: 2px solid #2c3e50;
            position: relative;
        }

        .team-section:before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 1px solid #e63946;
            border-radius: 8px;
            pointer-events: none;
        }

        .team-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 60px;
            margin-top: 40px;
        }

        .team-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        /* Responsive image container */
        .team-img-container {
            position: relative;
            width: 100%;
            padding-top: 130%; /* Creates a square aspect ratio */
            overflow: hidden;
        }

        .team-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center top;
            transition: transform 0.3s ease;
        }

        .team-card:hover .team-img {
            transform: scale(1.05);
        }

        .team-content {
            padding: 25px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex-grow: 1;
        }

        .team-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .team-role {
            color: #e63946;
            font-weight: 600;
            margin-bottom: 0;
            display: block;
            font-size: 1.1rem;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .team-cards {
                gap: 30px;
            }
        }

        @media (max-width: 992px) {
            .company-overview, .team-section {
                padding: 40px;
            }
            
            .team-cards {
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .company-overview, .team-section {
                padding: 30px;
            }
            
            .team-cards {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
        }

        @media (max-width: 576px) {
            .company-overview, .team-section {
                padding: 20px 15px;
            }
            
            .team-cards {
                grid-template-columns: 1fr;
                max-width: 350px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .highlight-box {
                padding: 15px;
            }
        }