/* <style> */
       .office-type-card {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 25px;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .office-type-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        #cta{
  background-color: #1a3a6c;
}


/* </style> */


/* <style> */


    /* Grid Version Styles */
    .location-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .location-card {
        background: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        border-left: 3px solid #1a237e;
        transition: transform 0.3s;
    }
    
    .location-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .location-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin-bottom: 10px;
    }
    
    .location-info h6 {
        margin: 0 0 5px 0;
        color: #333;
        font-size: 0.95rem;
    }
    
    .location-time {
        margin: 0;
        color: #1a237e;
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    @media (max-width: 768px) {
        .location-grid {
            grid-template-columns: 1fr;
        }
    }


/* </style> */


